Level Goal
The password for the next level is stored in a hidden file in the inhere directory.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 bandit3@bandit.labs.overthewire.org
...
bandit3@bandit.labs.overthewire.org's password: UmHadQclWmgdLOKQ3YNgjWxGoRMb5luK - [Comment] Using ls command to list directory contents
- bandit3@melinda:~$ ls
inhere - [Comment] Using cd command to change the shell working directory
- bandit3@melinda:~$ cd inhere/
- bandit3@melinda:~/inhere$ ls
- [Comment] Using ls command with -al options to list hidden directory contents
- bandit3@melinda:~/inhere$ ls -al
total 12
drwxr-xr-x 2 root root 4096 Jun 6 2013 .
drwxr-xr-x 3 root root 4096 Jun 6 2013 ..
-rw-r----- 1 bandit4 bandit3 33 Jun 6 2013 .hidden - [Comment] Using cat command to output file's contents
- bandit3@melinda:~/inhere$ cat .hidden
pIwrPrtPN36QITSp3EQaw936yaFoFgAB - [Comment] Using exit command to disconnect connection to server
- bandit3@melinda:~$ exit
logout
Connection to bandit.labs.overthewire.org closed. - [Comment] It's done! Saving the password for next level.
No comments:
Post a Comment