Level Goal 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 1. Running ls revealed a huge number of directories. 2. Seeing find listed under "Commands you may need to solve this level" made it pretty obvious that was the way to go - it's a command used to search for files matching specific conditions. 3. Anyway, applying the given conditions as options: -size 1033c -not -executable One file showed up right away. Yar
2
0