Goal
Log into the Bandit wargame and get comfortable with the basics:
- connecting via SSH
- reading files
- copying the password for the next level
Steps
- SSH into the game server:
ssh bandit0@bandit.labs.overthewire.org -p 2220
-
When prompted, use the Level 0 password from OverTheWire.
-
List files:
ls
- Read the
readmefile:
cat readme
That output is the password for Level 1.
Notes
- If SSH asks to trust a host key, type
yes. - If you get stuck, run
man sshand learn one new thing each time.