Super SSH (picoCTF 3)

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

  1. Will need to ssh into this one.
  2. ssh -p ’the port number’ username@destination
  3. enter the password
  4. It gave me the flag!

3 minutes 52 seconds to complete

Hints

  1. None used

Core Lessons

  1. 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 number
    • username = what your username at the host
    • @ - to indicate the break between the username and the host name
    • host name = where you want to log in
  2. 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.