✅Puzzle 6
CALLDATALOAD
Puzzle
Solution
From evm.codes:
CALLDATALOAD(0x00)
loads calldata with offset 0 (LSB in this case), and JUMP
jumps to this address.
The objective is to jump to address 0x0A
, so calldata should be 0x000000000000000000000000000000000000000000000000000000000000000A
, where 31 bytes of 0x00
are padded on the left.
Last updated