-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc2-gui.py
84 lines (61 loc) · 2.65 KB
/
c2-gui.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
from http.server import BaseHTTPRequestHandler, HTTPServer
import requests
HOST = "localhost"
PORT_HTTP_CLIENT = 8080
clients = []
# Define the dynamic html function
def dynamic_html(path):
return path[1:] not in clients
# Define the request handler class
class MyRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
if self.path == "/":
self.send_response(200)
self.send_header("Content-type", "text/html")
self.end_headers()
# read the html file
with open("homepage/homepage.html", "r") as f:
html = f.read()
# keeping it because you never know
# read the top html file
#with open("homepage/hp-top.html", "r") as f:
# tp_html = f.read()
# read the bottom html file
#with open("homepage/hp-bttm.html", "r") as f:
# bt_html = f.read()
# make get http request to the server to get the clients list
#clients = requests.get("http://localhost:8880/clients").json()
# create the html elements for the clients list
#clients_html = ""
#for client in clients:
# clients_html += f'<li class="list-group-item"><a href="/{client}">{client}</a></li>'
# join all the html file parts
#html = tp_html + clients_html + bt_html
# send the html file to the client
self.wfile.write(html.encode())
elif dynamic_html(self.path):
self.send_response(200)
self.send_header("Content-type", "text/html")
self.end_headers()
# read the top html file
with open("console/part1.html", "r") as f:
part1_html = f.read()
# read the bottom html file
with open("console/part2.html", "r") as f:
part2_html = f.read()
# read the bottom html file
with open("console/part3.html", "r") as f:
part3_html = f.read()
# read the bottom html file
with open("console/part4.html", "r") as f:
part4_html = f.read()
socket_id = self.path[1:]
# join all the html file parts
html = part1_html + socket_id + part2_html + socket_id + part3_html + socket_id + part4_html
# send the html file to the client
self.wfile.write(html.encode())
if __name__ == "__main__":
# Create an HTTP server instance
server = HTTPServer((HOST, PORT_HTTP_CLIENT), MyRequestHandler)
# Start the server
server.serve_forever()