added all ctfs

This commit is contained in:
2023-12-25 07:06:20 +01:00
commit 9ea8ecac74
37 changed files with 640 additions and 0 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)