Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
`hidden.wav` hides a message encoded with on-off keying (OOK). Turn the tone on/off slots into bits and decode them to recover the flag (the bundled `decode.py` is a reference implementation).
The beeps in hidden.wav are on-off keying (OOK): each 40ms slot is tone ON=1 / OFF=0
Read samples with Python's wave module and threshold the per-slot peak amplitude into bits
Skip the leading 8-slot sync preamble, pack the rest into bytes MSB-first and ASCII-decode for the flag (no FFT; the bundled decode.py implements this)