updates people updates

This commit is contained in:
2026-06-12 00:36:55 +02:00
parent a5e327d7f7
commit d90e4ede1a
17 changed files with 2462 additions and 216 deletions

View File

@@ -0,0 +1,25 @@
from pwn import xor
with open("./encrypted_data.txt", "r") as f:
data = f.readline()
key = bytes.fromhex("524A4A3344534350")
print(len(key))
dec_key = []
for s in key:
s -= 17
if s < ord('A'):
s += 26
dec_key.append(s)
dec_key[3] = b"3"[0]
print("".join(chr(c) for c in dec_key))
data = bytes.fromhex(data)
print(xor(data, dec_key))