OverTheWire Bandit Game

Level 0 > 1:

Level 1 > 2:

Level 2 > 3

Level 3 > 4:

Level 4> 5:

Level 5 > 6:

Level 6 > 7

  • We use find command and sub-commands:

    • -user is generally -username, where -group is like -password

    • -type will be f as it says “file”

    • -size is 33 as mentioned

  • 2>/dev/null will hide Error Messages

Level 7 > 8:

  • The data is extremely large and difficult to figure out the password, so we use given clue “millionth” using grep to find the password

Level 8 > 9:

  • We use sort to sort the data and the use uniq -u to separate the unique one

Level 9 > 10:

Level 10 > 11:

From TryHackMe, Linux Modules - Task 13 it is mentioned regarding base64 command:


More Levels will be updated once I finish them…

Updated on