Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

Hex to Asm


Hex to Asm

By ghostghost | 10172 Reads |
0     0

Advanced crackers or already have this or know it by heart, but for people learning like me it's very helpfull =)

this is a list usefull asm commands (asm is the language to wich decompilers like olly decode files to)

for example; you want the program to jump to the same place whether you got the right cd-key or not.

Hex: Asm: Meaning.

74 je Jump if equal. 75 jne Jump if not equal. 77 ja Jump if above. EB jmp Jump. 90 nop No Operation(Used to wipe out commands). 0F82 jnae Jump if not greater or equal. 0F82 jb Jump if less then. 0F83 jnb Jump if not less then. 0F83 jna Jump if not above. 0F86 jbe Jump if less then or equal to. 0F87 jnbe Jump if not less then or equal to. 0F8F jg Jump if greater. 0F8E jng Jump if not greater. 0F8C jnge Jump if not greater or equal. 0F8C jl Jump if less then. 0F8D jnl Jump if not less then. 0F8E jle Jump if less or equal. 0F8D jnle Jump if not less or equal.

plz rank this if you find it helpfull =)

Comments
bl4ckc4t's avatar
bl4ckc4t 17 years ago

lost me at the beginning… 6/10 It does help to some extent.

ghost's avatar
ghost 17 years ago

you will know when u need it =)

ghost's avatar
ghost 17 years ago

Maybe a good ASM tutorial should be better to begin … do you know some good ASM tutorial ?

lukem_95's avatar
lukem_95 17 years ago

Amazing article :)

ap101's avatar
ap101 16 years ago

Not very in depth but it is good for reference.