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.

need explanation in patching 1


fuser's Avatar
Member
0 1

so i opened up patch1 and found the password, and of course, the instruction is to nop over the jump.

so i naturally assumed that all i had to do is to find all the jump if zero instruction (jz) and replace it with nop's .

but there are quite a lot of jz's here, so i was wondering if i was doing it properly, or should i redo everything?


ghost's Avatar
0 0

you want to nop the jump that determines whether you see the win message or it says you're wrong. that's the only one you do it to.


Uber0n's Avatar
Member
0 0

fuser wrote: so i naturally assumed that all i had to do is to find all the jump if zero instruction (jz) and replace it with nop's .

There are always tons of instructions and comparisons in every application. If you modify every single jump the application will definately not work at all, just try to find the important one.

Read some basic articles on cracking/debugging if you still can't beat it ;)