| find the encryptor |
Can share source code? Thanks. |
2023-12-27 02:52 |
| crackme |
This is probably a malware |
2023-10-27 05:12 |
| zun1 crackme |
#python
username = input("username:")
password = ""
for char in username:
encrypted_char = chr(ord(char) + 1)
password += encrypted_char
print("password:", password) |
2023-10-26 08:01 |