overthewire-writeups

Bandit01 -> 02: Simply lovely Dash

Challenge

Level Description

The instruction for this level is quite clear tho, they said the password for the next level is stroed in a file called -, and its located in the home directory. So, let’s go.

The Process

Just like the previous level, I check the home directory first with ls and there is a file named -.

I little bit confused, and then I remember that we can use command cat with Input Redirection < for read a filename with dash.

I type

$ cat < -

There it is, the password for the next level.

Password for the Next Level

[SPOILER]

What I Learned

Helpful Reading Material