Bandit Level 0 β†’ Level 1

We are in the home directory of the user bandit0, So to list the files in that directory we will use the ls command:

ls

Here we found the file mentioned in the challenge description, lets check the file type of that file, to do so we will use the file command:

file <filename>

It is a normal text file, we can read files in Linux systems using a variety of command, like: cat, strings, type, more, etc.

cat <filename>

Here we found the password for the next user bandit1.

Last updated