Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
A binary that prints nothing to standard output is provided. Trace its system calls with strace to determine which file it opens and reads.
strace ./binaryname traces the flow of system calls
Pay attention to the open or openat system calls
Once you know the file path being read, cat it directly