-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathapp.py
89 lines (68 loc) · 1.98 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
from flask import Flask, request, send_file, render_template_string
from secrets import token_hex
from uuid import uuid4
import adminbot
app = Flask(__name__)
secure_cookie = token_hex(64)
pages = {}
template = """
<!DOCTYPE html>
<html>
<head>
<title>cool stats</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
</head>
<body>
<p>{{ message }}</p>
<p>u have clicked {{ count | safe }} times!</p>
</body>
</html>
"""
def generate(count: str) -> str:
message = ""
number = 0
try:
number = int(count)
except Exception:
number = -1
if number > 20000:
message = "incredible! ur a SUPER clickr!"
elif number > 500:
message = "hey, that's pretty good! but can u do better..."
elif number > 50:
message = "lame... i can outclick u any day of the week..."
else:
message = ""
return render_template_string(template, message=message, count=count)
@app.route("/")
def index():
return send_file("static/index.html")
@app.route("/secrets")
def secrets():
if request.cookies.get("secure_cookie") == secure_cookie:
return send_file("static/secrets.html")
else:
return send_file("static/401.html")
@app.route("/stats")
def stats():
webpage = generate(request.cookies.get("count", 0))
unique_id = str(uuid4())
pages[unique_id] = webpage
adminbot.visit(f"http://127.0.0.1:31337/view?id={unique_id}", secure_cookie)
return webpage
@app.route("/view")
def view_stats_page():
if request.cookies.get("secure_cookie") == secure_cookie:
unique_id = request.args.get("id", "")
page = pages.get(unique_id)
if page:
pages[unique_id] = None
return page
return send_file("static/404.html")
return send_file("static/401.html")
@app.errorhandler(404)
def page_not_found(err):
return send_file("static/404.html"), 404
if __name__ == "__main__":
app.run(host="0.0.0.0", port=31337, debug=False)