Invisible Cipher
This was a basic Frequency analysis challenge and the ciphertext key-space/map was random Unicode characters. So,
Pick up the nonsense phrase "ETAOIN SHRDLU" that represents the 12 most frequent letters in typical English language text.
Check the frequency of each of the letters occurring in the ciphertext
Start to map them to the original English Alphabet/map/key-space
Assume the remaining common English words and totally recover the plaintext + FLAG
Solve Script: solve.py
🔰 you can uncomment this part in the solve script to see what's happening
Flag: wormcon{CAREFUL_FREQUENCY_ANALYSIS_BREAKS_SUBSTITUTION_CIPHER}
Last updated