CTFs and solutions

This commit is contained in:
emln
2025-04-27 19:24:27 +02:00
commit aa0fe54b3b
426 changed files with 2756 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import sys
for i in sys.argv:
payload = i
mlen = len(payload.split(":"))
print("------")
print("CRYPTO25{",end="")
if mlen % 64 == 0:
print("00:",end="")
print(payload,end="")
print("}")
print("Length:"+str(mlen))
print("------")