bandit5@bandit:~$ ls
inhere
bandit5@bandit:~$ cd inhere/
bandit5@bandit:~/inhere$ ls
maybehere00 maybehere04 maybehere08 maybehere12 maybehere16
maybehere01 maybehere05 maybehere09 maybehere13 maybehere17
maybehere02 maybehere06 maybehere10 maybehere14 maybehere18
maybehere03 maybehere07 maybehere11 maybehere15 maybehere19
bandit5@bandit:~/inhere$ find -type f -size 1033c
./maybehere07/.file2
bandit5@bandit:~/inhere$ cat ./maybehere07/.file2
DXjZPULLxYr17uwoI01bNLQbtFemEgo7
Per risolvere questo livello è stato utilizzato un nuovo comando: find; serve a cercare file o gruppi di file che rispettano determinati requisiti specificati aggiungendo opzioni al comando, in questo esempio si richiedeva un file human-readable (leggibile) , con dimensione di 1033 bytes e non eseguibile.
-type f trova un file di tipo plain file
-size 1033c ovviamente indica la dimensione del file, la lettera c indica il formato in bytes