Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
A hidden directory contains an unusually large file. Use du or find's size options to track it down and inspect its contents.
du -ah shows file sizes including hidden directories
find . -size +1M filters by file size
Check the end of the found file with tail