Gotta Decrypt Them All
253 solves / 175 points
Last updated
253 solves / 175 points
Last updated
Source files and Solve Script: CSAW-Quals/crypto/Gotta Decrypt Them All
STEP 1: Identify the Morse encoded string
STEP 2: Decrypt to get Integers
STEP 3: Convert them to ASCII characters
STEP 4: Identify Base64 and decode it to get RSA parameters and encrypted message
STEP 5: Check the small public exponent (e) and take the eth root to get the message
Why STEP 5 works?
In practice, we pick the RSA parameters and the message such that. If we use a small message and a small exponent then it just becomes and we can directly calculate to get back our message.