Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
Some older log files have been gzip-compressed by log rotation. Use a command that searches inside compressed files without extracting them first to find the flag.
Use ls to check for files with a .gz extension
zgrep can search inside compressed files without extracting them
Combining zcat and grep achieves the same result