Super SSH writeup - Pico CTF ( General skills )
Solution -
Step 1: Launch the instance - Once you begin the challenge, additional information becomes available, including the necessary SSH details:
- Username
- Host address (IP)
- Port number
- Password
These details are required to establish an SSH connection with the remote server. Take note of them as they will be used in the next step.
Step 2: Construct the command - Using the provided SSH information, we now need to construct the SSH command to initiate a secure connection to the host.
Code bash
ssh username@host -p port
Example:
Code bash
ssh ctf-player@picoctf.net -p 60601
Flag is - picoCTF{s3cur3_c0nn3ct10n_8306c99d}