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)