Files
picoCTF/shop/sol.py
Maxime Vorwerk d555797008 shop
2024-06-14 14:24:32 +02:00

8 lines
226 B
Python
Executable File

#!/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)))