changed repo structure

This commit is contained in:
2025-06-06 02:50:04 +02:00
parent e887de976a
commit 6e6ee357b8
8848 changed files with 2089898 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import sys
binary = bytearray(open(sys.argv[1], 'rb').read())
size = len(binary)
for i in range (size):
binary[i] = binary[i] ^ 0x41
open(sys.argv[2], 'wb').write(binary)