Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
There is a hidden command "getflag" in /app/secret_bin directory. However, this directory is not in PATH, so you cannot execute it directly. Execute this command in two ways: 1. Using absolute path 2. Adding to PATH and execute The command will display the flag when executed.
Execute with absolute path: /app/secret_bin/getflag
Check PATH: echo $PATH
Add to PATH: export PATH=$PATH:/app/secret_bin