Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
need explanation in patching 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?
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 ;)