Level 1
Read a file!
We need to read a file that contains the password! Lets start by listing all the files in the current directory (folder).
# -a => All files
# -l => Long List (formats output)
ls -al
Here we see the readme file mentioned on the OTW page.

We will use the cat
command to print the password:
cat ./readme

Then we simply type exit to exit the shell and reconnect as bandit1 and use the provided password
exit
ssh -p 2220 [email protected]
Last updated