Overthewire Bandit Level 2 To 3
Level goal
## Level Goal
The password for the next level is stored in a file called *spaces in this filename* located in the home directory
## Commands you may need to solve this level
ls, cd, cat, file, du, find
Lets look at all the files
bandit2@bandit:~$ ls
spaces in this filename
Lets try to cat the file
bandit2@bandit:~$ cat spaces in this filename
cat: spaces: No such file or directory
cat: in: No such file or directory
cat: this: No such file or directory
cat: filename: No such file or directory
Lets wrap it in quotes, spaces are bad.
bandit2@bandit:~$ cat "spaces in this filename"
redacted
The password for level 3:
redacted
Connect to level 3.
bandit2@bandit:~$ ssh bandit3@localhost
#Accept the fingerprint ('yes') and enter the password.
On the next episode of Bandit…