Crack Me
Description
Can you figure out the correct cipher being used?
Cracked
We are given a Python script crack.py
The first bit gives us a cipher, which is the encrypted flag, and an alphabet
We also get a list of ciphers
Finally, the main
function just calls get_flag
so let's examine it
Looks like get_flag
takes in a cipher name then a key, which is an integer, and checks if the cipher is ciphers[61]
from the provided list of ciphers
Since I'm not in the mood to count, let's add print(ciphers[61])
to the main function and run the script with python crack.py
The cipher is ROT47 so we can enter that in, then it prompts us with Enter the key:
Taking a look at the code, the key is used with decode_flag
to decrypt the cipher using the alphabet, and since the cipher is ROT47 the key must be 47
This is due to
decode_flag
decrypting by "rotating" the flag with the key at the line(index + key) % len(alphabet)
Flag
retroCTF{y0uR3_4_cr@ck_3xp3rt}
Last updated