Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
A single file containing the flag is hidden deep inside many nested directories. Use the find command to locate the real one without being fooled by decoys.
find . -type f recursively lists every file under the current directory
find . -name "flag*" filters by filename
cat the file you find right away to check its contents