Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
Under /var/log/app there are many date-stamped log files, and the flag is hidden in a single ERROR line among them. Use grep or find to locate that line.
grep -r can recursively search an entire directory
Try filtering by log level (ERROR/DEBUG/INFO)
grep -rn also shows the filename and line number