Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.16 KB

Level0 -> Level1.md

File metadata and controls

37 lines (26 loc) · 1.16 KB

Bandit Level 0 -> Level 1

https://overthewire.org/wargames/bandit/bandit1.html

Level Goal :

The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. Whenever you find a password for a level, use SSH (on port 2220) to log into that level and continue the game.

Commands you may need to solve this level :

ls,cd,cat,file,du,find

PROCEDURE :

We're staring off with a very easy task. Let's just look at the contents of the readme file using cat. We can check that we're already in the home directory by using pwd:

bandit0@bandit:~$ pwd
/home/bandit0

we can use ls to see what files are in this directory and confirm that it does in fact contain a file called readme:

bandit0@bandit:~$ ls
readme

Now we can use cat to look at the contents of the readme file:

bandit0@bandit:~$ cat readme
NH2SXQwcBdpmTEzi3bvBHMM9H66vVXjL

<<< Previous Task (Level0) ...................................................................... Next Task (Level1) >>>