mr_tex
August 25th, 2012, 04:29
http://postimg.com/82000/photo-81273.jpg ("http://postimg.com/82000/photo-81273.jpg")
these are pictures of asm of an identical function in a program im trying to crack (32 bit vs 64 bit). this function checks to see if it's the registered version of the software.
on the left, is the 32-bit version already cracked by adding:
right before the final line (return, or ret)
the right side, is the 64 bit version of the software, uncracked because I don't know how to translate the
into 64-bit asm, can someone tell me how?
these are pictures of asm of an identical function in a program im trying to crack (32 bit vs 64 bit). this function checks to see if it's the registered version of the software.
on the left, is the 32-bit version already cracked by adding:
Code:
xor eax,eax
inc eax
right before the final line (return, or ret)
the right side, is the 64 bit version of the software, uncracked because I don't know how to translate the
Code:
xor eax,eax
inc eax
into 64-bit asm, can someone tell me how?