**Level Information**
> [!important] The password for the next level is stored in a file called **-** located in the home directory.
>
>
>
> **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)
- To start, SSH into `bandit1` and use the `ls` command to list the directories in the current directory. Using the `-l` option with `ls` displays each item on a separate line, and the `-a` option shows all files, including hidden ones.
- You will notice there is a file named `-`.
- The `-` character usually indicates the start of a switch, so using `cat` directly will cause an error.
- To read the contents of this file, specify the current directory with `./–`.
- This command will display the password in the command line interface (CLI).
![[Level 1 – 2.png]]