Bandit Level 3 Solution

Bandit level 3 is really easy as it teaches you how to access directories, which is done by cd command then you need to read a hidden file.

Let’s start by logging into bandit level 3 machine

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

with the password that we got from the previous level

UmHadQclWmgdLOKQ3YNgjWxGoRMb5luK

after we login, let’s list all the files and directories.

let’s access the directory “inhere”

cd inhere

then let’s list all the files inside

now let’s read the hidden file with

cat .hidden 

and you will get the following password for the next level.

pIwrPrtPN36QITSp3EQaw936yaFoFgAB

you can access the next level from here