This commit is contained in:
Maxime Vorwerk
2024-06-14 14:24:32 +02:00
parent e902659816
commit d555797008
20 changed files with 80 additions and 0 deletions

7
shop/sol.py Executable file
View File

@@ -0,0 +1,7 @@
#!/home/maxime/.pyvenv/bin/python3
with open("flag", 'r') as f:
flag_list = f.read()
flag_tmp = flag_list.replace('[', '').replace(']', '').strip().split(' ')
print(''.join(map(lambda a: chr(int(a)), flag_tmp)))