crackmes.one

Writeup for Very easy

Author: authand
Date: 2025-06-19 12:22
Summary: Looking at the disassembly you can see the mathematical operations being done which you can then convert into python to write a keygen: def main(): for i in range(100): print(f"{i}:{gen_key(i)}") def gen_key(original_input): copy_input = original_input # mov eax, edx copy_input

Loading writeup...