| make a text file called "gameHack" in Documents and put. this text inside it "0x90-HACKEADO-0x90". :) nice crackme |
==> |
| import hashlib
import string
def md5_hex_upper(s: str) - str:
return hashlib.md5(s.encode("utf-8")).hexdigest().upper()
def build_serial(name: str, prefix6: str) - str:
if len(prefix6) != 6 or any(ch not in string.printable[:-6] for ch in prefix6):
raise ValueError("prefix6 must be exactly 6 printable ASCII chars")
mid7 = md5_hex_upper(name)[:7]
return prefix6 + mid7 + "FBC"
if __name__ == "__main__":
name = input("Enter name: ").strip()
prefix = "KRACK-"
try:
serial = build_serial(name, prefix)
print("Your Serial is:", serial)
except ValueError as e:
print("Error:", e)
|
==> |
| For name = “Coder”
MD5("Coder") (UTF-8, uppercase hex) = 14C0F98E06BCD735D89C0C6A57488CCD
First 7 hex chars = 14C0F98
Therefore, any valid serial for “Coder” must be:
FBC
KRACK-14C0F98FBC :)
|
==> |
| nice! |
==> |
| nice try :) the goal is to make a keygen for it :) |
==> |
| awesome123 is the password :) |
==> |
| admin
123456 :)) |
==> |
| easi123 |
==> |
| I might post a recoded one this one has some flaws :/ |
==> |