Bandit Level 0-1@overthewire.org
Description
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.
Current level credentials
Key | Value |
---|---|
Server-name: | bandit.labs.overthewire.org |
Port: | 2220 |
User: | bandit0 |
Password: | bandit0 |
Current level login
Login
1 |
|
sshpass
before using it. The ssh
command can also be used on its own. If so, copy-paste the password when requested.
Hints And Solution
Hint(s)
to list information about files in a directory, use ls
to print files on the standard output, use cat
Solution
1 2 3 4 5 6 7 8 9 |
|
- use
ls
to list the files in the current directory. Use switches like-a
to get more information about files - use
cat
to print the content of the filereadme
to the standard output
First we check the directory if there is a file called readme
in the folder. We can use ls
for that. We find the file and cat
it out to the standard output with cat readme
Resources
Comments
Any feedback and suggestions are welcome. This website was created using mkdocs and the material plugin. If you want, you can make a pull request. The repository is https://github.com/dabonzo/itsec_hp