finish 7.1.3

This commit is contained in:
firmianay
2018-01-29 23:57:31 +08:00
parent d89354a503
commit 784a2b7fd6
4 changed files with 406 additions and 0 deletions

View File

@ -0,0 +1 @@
"you've been hacked"

View File

@ -0,0 +1,11 @@
#!/usr/bin/env python
from flask import Flask, redirect
app = Flask(__name__)
@app.route("/noharm.txt")
def test():
return redirect("ftp://127.0.0.1/harm.txt")
if __name__ == "__main__":
app.run(host="0.0.0.0",port=80)

View File

@ -0,0 +1 @@
"hello world"