| ktoto |
The program checks that the ASCII sum of the characters in the name equals the value of the password.
Python Keygen:
name = str(input("Name: "))
key = sum(ord(c) for c in name)
print("Generated key: ", key)
|
2025-09-08 17:29 |
| C++ and assembly login crackme (no virtualization and no anti debugging) |
Just make sure the username begins with “admin” and everything after that doesn’t matter. |
2025-09-07 09:46 |
| Easy, but interesting for novice |
easi123 |
2025-09-06 17:16 |
| Very easy disassembly execise |
cmp eax,1E790
That means our input is being compared with the value 1E790, which is in hexadecimal. If we convert it to an integer, we’ll get the password.
|
2025-09-06 16:03 |