-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathListener.py
43 lines (40 loc) · 1.22 KB
/
Listener.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
import cherrypy ,os ,binascii
global added
port = 8080 #<Port To Listen On>
class Main(object):
global added
added=[]
@cherrypy.expose
def index(self):
try:
a="<h1> Connections :\n</h1><h2>"
f=open("Connections.txt","r")
ips = f.readlines()
for i in ips:
a += "["+str(ips.index(i))+"] "+str(i) +"<br />"
f.close()
a +="</h2>"
return a
except :
return "<h1> No Connections Yet ! !</h1>"
@cherrypy.expose
def NewConnection(self, ip):
ip = binascii.unhexlify(ip)
try:
if ip not in added:
a = open("Connections.txt","a")
added.append(ip)
a.write(str(ip)+"\n")
a.close()
return "Ok"
except:
if ip not in added:
a = open("Connections.txt","w")
added.append(ip)
a.write(str(ip)+"\n")
a.close()
return "Ok"
if __name__ == '__main__':
cherrypy.server.socket_host = "0.0.0.0"
cherrypy.server.socket_port = port
cherrypy.quickstart(Main())