From ce298805abb44836453af702396a4bb84ada1598 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Thu, 24 Oct 2024 21:47:04 -0400 Subject: [PATCH] [-] oops, remove keys --- content/posts/2024-10-24 PJSK Reversing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2024-10-24 PJSK Reversing.md b/content/posts/2024-10-24 PJSK Reversing.md index fd29291..ed72c48 100644 --- a/content/posts/2024-10-24 PJSK Reversing.md +++ b/content/posts/2024-10-24 PJSK Reversing.md @@ -84,7 +84,7 @@ from Crypto.Cipher import AES from Crypto.Util.Padding import unpad from pathlib import Path -aes = AES.new(b"g2fcC0ZczN9MTJ61", AES.MODE_CBC, b"msx3IV0i9XE5uYZ1") +aes = AES.new(b"- key here qwq -", AES.MODE_CBC, b"- iv here meow -") dec = lambda x: unpad(aes.decrypt(x), AES.block_size, style='pkcs7') [f.with_suffix(".dec").write_bytes(dec(f.read_bytes()))