I successfully changed the instruction to NOP
, as it is quite simple:
set *0x08048e3a = 0x90
But I'm trying to change this address 0x08048e3a
which has je 0x8048e52
. I would like to change it to je 0x8048ea8
.
But when I do set *0x08048e3a = 0x74168048ea8
, it does not work. ( 0x7416
= je
)
thanks
source share