Bandit Level 9 β†’ Level 10

List the files in the home directory and read the data.txt file:

ls -la
file data.txt
cat data.txt

As we can see there is a lot of non-readable strings, and for that we will use the strings command to show only readable characters, and then we will grep for the string that begins with =:

strings data.txt | grep '='

Here is the password for the next user.

Last updated