From f43db5d793524a26f5ddf443a6f66d5a1600d48a Mon Sep 17 00:00:00 2001 From: arielkru <63583491+arielkru@users.noreply.github.com> Date: Tue, 6 Feb 2024 22:31:51 +0200 Subject: [PATCH] Update flask.py --- python/flask.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/flask.py b/python/flask.py index c78931d..beefa9e 100644 --- a/python/flask.py +++ b/python/flask.py @@ -1,8 +1,8 @@ import os from flask import Flask, request import bleach -app = Flask(__name__) - +app = Flask(__name__) # comment +# comment # curl -X GET "http://localhost:5000/tainted7/touch%20HELLO" @app.route("/tainted7/") def test_sources_7(something): @@ -18,6 +18,6 @@ def test_sources_7(something): os.system(sanitized_data) return "bar" - +# comment if __name__ == "__main__": app.run(debug=True)