../

OverTheWire - Bandit: Level 6 to Level 7


Like the level above but now there are multiple directories within inhere which each contain multiple files.

OverTheWire contains the following hint for this level:

The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties:

  • human-readable
  • 1033 bytes in size
  • not executable

Thus, we can simply use find

1$ find inhere -type f -size 1033c
2inhere/maybehere07/.file2
3$ cat inhere/maybehere07/.file2
4P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU

Kategorien: #/writeups/; #/overthewire/

Tags: #/security/; #/hacking/; #/bash/; #/linux/; #/ctf/