Bandit Level 8

OverTheWire-Level Directory
Previous Level: 7

Level 8 Fight!

In order to begin you will need to use PuTTY or preferably Linux and use the following information

If you are currently in a level type “logout”

Now type “ssh bandit8@bandit.labs.overthewire.org -p 2220”
Password:”cvX2JJa4CFALtqS87jk27qwqGhBM9plV”
We are now into level 8

For this level we are told

“The password for the next level is stored in the file data.txt and is the only line of text that occurs only once”

If you have done this before you will know you can use

“ls “ to show files/folders

We then see”data.txt”

To find the password we will need to find the correct part of the txt file with

“cat data.txt | sort | uniq -u”

This will read the file/sort it/ and then find only single occurences

“UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR” is the password

Once again we can use
“ssh bandit9@bandit.labs.overthewire.org -p 2220”
and the password we just found to login to the next level

Next Level: 9