17th November 2025
Prepared By: Aryan
Challenge Author(s): Aryan
Difficulty: Medium
Classification: Official
Sound of Secrets is a medium-difficulty forensics challenge that tests your ability to uncover hidden messages through audio analysis and layered encoding. An innocent-sounding WAV file conceals a Morse code message that requires further decryption to reveal the final flag. Sound of Secrets
You are provided with Hola.wav, an audio file that appears ordinary at first. Hidden within the audio are carefully timed beeps and pauses that encode a message in Morse code. Once decoded, the Morse reveals an encoded string that requires additional cryptanalysis to extract the final secret.
Your mission: analyze the audio, decode the Morse pattern, decrypt the hidden cipher, and capture the flag.
- Audio analysis and pattern recognition
- Morse code interpretation (dots and dashes)
- Knowledge of classical ciphers (ROT13)
- Experience with online decoding tools
- Converting audio signals to Morse code using online tools
- Identifying and decrypting ROT13-encoded text
- Understanding layered encoding techniques in CTF challenges
- Using multiple tools in sequence for multi-stage challenges
Hola.wav - Audio file containing the hidden Morse code message
Navigate to Morse Code Translator. This tool supports direct audio file upload and automatic Morse code detection.
Upload Hola.wav to the website. The tool analyzes the audio waveform, detects the beep patterns, and automatically decodes the Morse code sequence.
GUVF VF GUR FRPERG ZRFFNTR RIRE
The decoded text GUVF VF GUR FRPERG ZRFFNTR RIRE doesn't appear to be valid English, but the pattern suggests a substitution cipher. The text structure and word lengths hint at ROT13 encoding—a simple Caesar cipher with a 13-letter shift.
Using CyberChef, apply the ROT13 operation:
Input: GUVF VF GUR FRPERG ZRFFNTR RIRE
Output: THIS_IS_THE_SECRET_MESSAGE_EVER
With the plaintext message revealed, construct the flag according to the standard CTF format:
hackcubes{THIS_IS_THE_SECRET_MESSAGE_EVER}
This challenge demonstrated a multi-stage decoding process:
- Audio file uploaded to Morse code translator for automatic decoding
- Morse translation produced ROT13-encoded text
- ROT13 decryption via CyberChef revealed the secret message
- Message conversion yielded the final flag
The challenge reinforced the importance of leveraging online tools and recognizing common encoding schemes in forensics investigations.
hackcubes{THIS_IS_THE_SECRET_MESSAGE_EVER}
-
Morse Code Translator - Audio to Morse code conversion
-
CyberChef - ROT13 decryption


