Very easy |
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 |