This commit is contained in:
Maxime Vorwerk
2024-06-09 14:48:10 +02:00
parent 3fd4d0d326
commit 584e1cef2d
59 changed files with 786 additions and 0 deletions

9
vault-door-5/sol.py Executable file
View File

@@ -0,0 +1,9 @@
#!/home/maxime/.pyvenv/bin/python3
from base64 import b64decode
from urllib.parse import unquote
S = "JTYzJTMwJTZlJTc2JTMzJTcyJTc0JTMxJTZlJTY3JTVm" + "JTY2JTcyJTMwJTZkJTVmJTYyJTYxJTM1JTY1JTVmJTM2" + "JTM0JTVmJTMwJTYyJTM5JTM1JTM3JTYzJTM0JTY2"
S = b64decode(S)
S = unquote(S)
print(S)