✅Puzzle 4
XOR
Puzzle
Solution
JUMP
to XOR(msg.value, 12)
.
The objective is to jump to address 0x0A
. Recall that XOR(msg.value, 12) = 0x0A
implies msg.value = XOR(0x0A, 12)
. Do it in Python:
The correct input is 6.
Last updated