Stupid simple crackme intended for absolute beginners. Your task is to find the secret key and enter it in the password field.
- Load crackme in xdbg64
- Right click -> Search for -> Current Module -> String references
- Find the line containing the string "Congratulations, you found the secret password".
- Double click this line.
- Go back to the crackme, type anything and click Ok. Nothing happens, no bp reached.
- Put some breakpoints a few lines up, before the jumps.
- Back to crackme, type anything, click Ok. BP reached.
- Step over until:
mov dl,byte ptr ds:[eax] -- your password
cmp dl,byte ptr ds:[ecx] -- j5%9lk
jne crackmeone...
- Clearly j5%9lk is the right password.
- Done.