| cantcrack |
cracked with a simple jmp 0xaddress
xd |
2026-06-17 05:30 |
| IMGUI test auth |
I solved this crackme by patching the binary instead of using the auth
First, I searched for the strings "Login successful" and "Invalid Key" in the program. After finding where they were used, I located the conditional jump that decided whether the login succeeded or failed.
I modified the jump instruction so that execution always went to the "Login successful" code instead of the "Invalid Key" code.
After patching the binary, the program accepted any input and displayed "Login successful" every time. <3 |
2026-06-17 03:35 |