Challenge Author:
Difficulty: Easy
Description
Using a secure shell (ssh) is going to be pretty important. Additional details will be available after launching your challenge instance.
Process / Notes
- Will need to ssh into this one.
- ssh -p ’the port number’ username@destination
- enter the password
- It gave me the flag!
3 minutes 52 seconds to complete
Hints
- None used
Core Lessons
- Understanding how to SSH into a specific port with a specific username at a desired target is a core skill.
ssh= the command to activate ssh-p= the flag to specify the port###= the port numberusername= what your username at the host@- to indicate the break between the username and the host namehost name= where you want to log in
- I’ve read that using SSH keys are much more secure than passwords. I’ll need to do some additional reading about how to set those up in the future.