**Level Information** > [!important] 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.<br><br> > > **Commands you may need to solve this level:** > > - [ls](https://manpages.ubuntu.com/manpages/noble/man1/ls.1.html) , [cd](https://manpages.ubuntu.com/manpages/noble/man1/cd.1posix.html) , [cat](https://manpages.ubuntu.com/manpages/noble/man1/cat.1.html) , [file](https://manpages.ubuntu.com/manpages/noble/man1/file.1.html) , [du](https://manpages.ubuntu.com/manpages/noble/man1/du.1.html) , [find](https://manpages.ubuntu.com/manpages/noble/man1/find.1.html) SSH into the level on port 2220. The user is bandit0, the host is bandit.labs.overthewire.org, and the password is bandit0. **The password for Level 1 is in here somewhere.** ```Bash ssh -p 2220 [email protected] ``` - Type “yes” to save and the SSH authentication key for the bandit host. - Once in, use the “ls” (LS) command to list all contents in the current working directory. - We can see there is a file available called “readme”. - We can view the contents of this file using the command, “cat”, which is short for concatenate, _(Concatenation is **the process of joining two strings together into one result**)_. ![[Level 0 - 1.png]]