readme: Added a ton of hints

This commit is contained in:
Nathan Woodburn 2023-05-13 18:29:42 +10:00
parent 9fdd60dfab
commit 642a3d2029
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -9,4 +9,17 @@ This file contains the flag (proof you finished) for this challenge.
After you find the flag, DM it to me on Discord or email it to me. After you find the flag, DM it to me on Discord or email it to me.
## Challenge 2 ## Challenge 2
There is another flag hidden somewhere in the same directory. There is another flag hidden somewhere in the same directory.
### Hints
- After you find the password, you can use `ssh` to log in to the server.
- The command is `ssh <user>@<ip\domain>`.
- You will be prompted about the authenticity of the host. Type `yes` and press enter. (This is used to make sure you are connecting to the right server)
- You will be prompted for the password. You can type it or paste it by right clicking.
- Here are some useful commands to know
- `ls` - List files in the current directory
- `cat <file>` - Print the contents of a file
- `pwd` - Print the current working directory
- `cd <directory>` - Change directory (disabled for you atm)
- `help` or `man` - Get help about a command (some commands need one or the other)
- `logout` - Log out of the server (also `Ctrl+D`)