Easy Peasy
Last updated
Was this helpful?
Last updated
Was this helpful?
A one-time pad is unbreakable, but can you manage to recover the flag? (Wrap with picoCTF{}) nc mercury.picoctf.net 20266 otp.py
As stated in the description, this is a challenge. One of the criteria of a one-time pad is that the key is never reused in part or in whole. We can modify the program so that it does not meet this requirement.
The significant bug in the script appears on lines 34-36:
stop
equals the previous ending point of the key plus the length of the new user input. However, if stop
is greater than the key length, stop
is set to stop % KEY_LEN
. Thus, inputting just enough text to get to the end of the keyfile will set stop
to 0 because 40000 % 40000
is 0
. key_location
is then set to stop
and key_location
is returned. So, when we input the next string to be encrypted the encrypt
function will receive key_location=0
, thus allowing us to use the same key that was used to encrypt the flag.
Generate a pwntools
template with pwn template --host mercury.picoctf.net --port 20266 otp.py
.
The solve is commented and explains the solution. In brief, since we know a clear text message and an encrypted message, we can find the key (as explained in ) and then decrypt the flag.
picoCTF{99072996e6f7d397f6ea0128b4517c23}