Over The Wire


Bandit

Host: bandit.labs.overthewire.org

Port: 2220



Level 8

ssh bandit8@bandit.labs.overthewire.org -p 2220
password: TESKZC0XvTetK0S9xNwm25STk5iWrBvP

Objective:

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

  • $ sort data.txt | uniq -u

CLI:

bandit8@bandit:~$ ls
data.txt
bandit8@bandit:~$ sort data.txt | uniq -u
EN632PlfYiZbn3PhVK3XOGSlNInNE00t
bandit8@bandit:~$

Bandit