initial commit
This commit is contained in:
14
3/keygen.py
Normal file
14
3/keygen.py
Normal file
@ -0,0 +1,14 @@
|
||||
import hashlib
|
||||
|
||||
username = input("Enter your username: ")
|
||||
|
||||
print(f"\nUsername: {username}")
|
||||
|
||||
hash = int(hashlib.sha256(bytes(username, encoding="ascii")).hexdigest()[-8:], base=16)
|
||||
print(f"SHA256-derived bytes: {hex(hash)}")
|
||||
|
||||
target = hash ^ 0x2faecb0d
|
||||
print(f"Target bytes: {hex(target)}")
|
||||
|
||||
password = target ^ 0xa2f99eae
|
||||
print(f"Your password: {hex(password)[2:]}")
|
9
3/patch.1337
Normal file
9
3/patch.1337
Normal file
@ -0,0 +1,9 @@
|
||||
>crackmethree.exe
|
||||
0000116C:C0->F6
|
||||
00001239:C0->F6
|
||||
000013D1:50->90
|
||||
000013D2:33->90
|
||||
000013D3:C0->90
|
||||
000013D4:F7->90
|
||||
000013D5:F0->90
|
||||
000013D6:58->90
|
Reference in New Issue
Block a user