Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
A process named "secret_service" is running in the background. Find this process and get the following information: 1. Process ID (PID) 2. Running user 3. Command line arguments The flag is in the command line arguments. Hint: Use ps, pgrep, top commands
Display process list with ps aux
Search for secret_service with grep
Show details with ps -fp <PID>