mirror of
https://github.com/20kaushik02/CSE545_SS_Work.git
synced 2025-12-06 06:34:06 +00:00
12 lines
175 B
Python
12 lines
175 B
Python
from flask import Flask, redirect
|
|
|
|
app = Flask("pwnc")
|
|
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return redirect("http://capture.local/is-exposed")
|
|
|
|
|
|
app.run("attacker.local", 9999)
|