nightxyz on 2024-12-13 17:34:
[Click to reveal]Username : zzzzzzzzzz
Password : 1220
Sum of the username letters decimal equivalent. For example if you enter only A char for username, then password is decimal equivalent 65.
username : A
password : 65
NotTellingYou on 2024-12-21 17:55:
Simply bypass the logic test je by jmp
DeFexGG on 2024-12-24 23:43:
done with jmp or patch for lazy guys
re.login on 2024-12-29 07:52:
[Click to reveal]Username = AA
Password = 130
minerpe123 on 2025-06-08 17:22:
I wrote keygen for this crackme:
username = input("Enter the username: ")
usernameList = list(username)
password = 0
for char in usernameList:
password = password + ord(char)
print(password)
Conper on 2025-09-08 17:29:
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)