Wednesday, December 31, 2014

Practical Reverse Engineering p.17 #2

Question number 2 on page 17 of Practical Reverse Engineering is as follows:

Come up with at least two code sequences to set EIP to 0xAABBCCDD.

One sequence would be to push that address and then return.

push 0xAABBCCDD
ret

Another sequence would be to simply jump to the address.

jmp 0xAABBCCDD

You could also call the address.

call 0xAABBCCDD

No comments :

Post a Comment