[Level 0]
Level Goal
The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org.Commands you may need to solve this level
The username is bandit0 and the password is bandit0. Once logged in, go to the Level 1 page to find out how to beat Level 1.
sshHelpful Reading Material
Secure Shell (SSH) on Wikipedia[Level 1]
How to use SSH on wikiHow
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 to log into that level and continue the game.Commands you may need to solve this level
ls, cd, cat, file, du, findSolution:
- [Comment] Using SSH to connect the server
- sp@simple-plan:~|=> ssh bandit0@bandit.labs.overthewire.org
...
bandit0@bandit.labs.overthewire.org's password: bandit0 - [Comment] Using ls command to list directory contents
- bandit0@melinda:~$ ls
readme - [Comment] Using cat command to output file's contents
- bandit0@melinda:~$ cat readme
boJ9jbbUNNfktd78OOpsqOltutMc3MY1 - [Comment] Using exit command to disconnect connection to server
- bandit0@melinda:~$ exit
logout
Connection to bandit.labs.overthewire.org closed. - [Comment] It's done! Saving the password for next level.
ssh http://linuxcommand.org/man_pages/ssh1.html ls http://linuxcommand.org/man_pages/ls1.html cat http://linuxcommand.org/man_pages/cat1.html exit http://linuxcommand.org/man_pages/logout1.html
No comments:
Post a Comment