To Be XOR Not To Be
Problem
You find 2 weird files, maybe https://en.wikipedia.org/wiki/Exclusive_or will help.
Solution
A simple XOR between the key
string and the ciphertext. We need to convert key
to an integer before performing the XOR. After the XOR, we need to convert the result back into a bytestring to get our flag.
Last updated