Target: : bandit0@bandit.labs.overthewire.org
port: : 2220
Objective
find the password located in a readme file
Recon
we need to ssh first to get access to the machine, it's a basic command
ssh -p 2220 bandit0@bandit.labs.overthewire.org
by pressing ls, we find the file in the home page, just like the website said
Exploitation
the cat command is enough to read it

Result
password : 6y2kwnwK6grgvwvpvLaa2T1cpFEKOhNR
What I Learned
- how to use
ssh