from flask import Flask, request, url_for, render_template, redirect, make_response
import requests
app = Flask(__name__, static_url_path='/static', static_folder='static')
app.config['DEBUG'] = True
@app.route("/")
def start():
return render_template("evil.html")
if __name__ == "__main__":
app.run(host='0.0.0.0', port=1337)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)