Abno's blog

Bandit Level 5-6

This task is extreamly similiar to the one before. All we have to do, is use the exact same solution from the last task, but add one more parameter to check. There should be only one file with this certain size, so lets see if we can find it.

find . -type f -size 1033c -exec file -- {} +

output: ./maybehere07/.file2: ASCII text, with very long lines

This file is the one containing the answer.

#bandit #ctf #overthewire