Bandit Level2 -> Level 3

Level Goal:

The password for the next level is stored in a file called spaces in this filename located in the home directory

Write-up:

First, verify that the file is located in the home directory:

ls

The output shows that a spaces in this filename file exists in the home directory.

Second, display the contents of the file:

 cat spaces\ in\ this\ filename

The output will display the password to log into bandit3.

UmHadQclWmgdLOKQ3YNgjWxGoRMb5luK

SSH into bandit3 using the discovered password to complete the next level.

ssh bandit3@bandit.labs.overthewire.org -p 2220

Proceed to the next level write-up.