overthewire-writeups

Bandit00 -> 01: Look at List

Challenge

Level Description

The goal of this level was very clear, they said that the password for the next level is stored in a file called readme located in the home directory. Once I found it, I logged in to next level use SSH on port 2220

The Process

So as the instruction said the password stored in file name readme, I check first the home directory.

I type ls in home directory and there it is, file readme. Next I wanna check contents of the file.

I used the cat command to see inside the file:

$ cat readme

And there it was, the password for next level.

Password for the Next Level

[SPOILER]

What I learned