diff --git a/python/flask.py b/python/flask.py index 597e894..43ef019 100644 --- a/python/flask.py +++ b/python/flask.py @@ -2,15 +2,15 @@ from flask import Flask, request import bleach app = Flask(__name__) -# comment +# comment # curl -X GET "http://localhost:5000/tainted7/touch%20HELLO" @app.route("/tainted7/") def test_sources_7(something): -# comment +# comment os.system(request.remote_addr) -# comment +# comment return "foo" -# comment +# comment @app.route("/sanitized/") def test_sources_7(something): data = flask.request.args.get("key") @@ -21,3 +21,6 @@ def test_sources_7(something): # comment if __name__ == "__main__": app.run(debug=True) + +# comment +# comment