by fs
beeeep beeeep beeeep beep beeeep beep beeeep beeeep beeeep beeeep beep beeeep beeeep beep beeeep beep. (Take note that sample rate of audio is 44.1kHz and duration of each beep is 0.01s)
This challenge is a frequency modulation challenge and designed to be easy.
We are given an attached audio file secret.wav and the goal of this challenge is to extract the hidden flag within the audio. When playing the audio, it sounds like a bunch of beeps and while it does sound like morse, those who pay closer attention to the challenge description and name, would realise that the bits of the flag has been embedded within the beeps within the audio file with the 1 bit being represented by a beep with a higher frequency and 0 bit being represented with a lower frequency.
This can be seen via the following screenshot where we can see some audio waves having a higher frequency (the part highlighted in blue) than the others (the part highlighted in yellow) thus showing a certain pattern.
We can write the following script to extract these bits from the flag (or if you really too lazy to write python script, manually write down the bits of the flag on a piece of paper ๐).
1 | from scipy.io.wavfile import read |
Running this script, we get the flag blahaj{On3s_aNd_z3ros_mAk3_tH3_wHole_w0rLd_rUN_aRouNd}
.
Ngl, it was kinda funny seeing people complain about this chall thinking it was morse code or ppl using radio software to analyse the audio coz they overthink when itโs a simple freq modulation chall.