-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
60 lines (41 loc) · 1.48 KB
/
server.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
import socket
import traceback
import multiprocessing
import hashlib
def comm(conn, addr):
try:
conn.sendall(b'Please send the 16-character password:')
message = conn.recv(4096)
#print(message)
passwd = message.decode('utf8')
#print(passwd)
buffer = ['' for i in range(16)] + list("SE2m0yNX$83oHEvL")
for i in range(len(passwd)):
try:
buffer[i] = passwd[i]
except IndexError:
buffer.append(passwd[i])
if ''.join(buffer[:16]) == ''.join(buffer[16:32]):
conn.sendall("AJD$!(#HD!B".encode('utf-8'))
else:
conn.sendall("Incorrect! Reminder: The SHA256 hash of the password is {}'. Please try again.".format(hashlib.sha256(''.join(buffer[16:32]).encode('utf-8')).hexdigest()).encode('utf-8'))
except:
conn.sendall(b'Error. Please try again')
traceback.print_exc()
conn.close()
if __name__ == '__main__':
# do stuff
connections = {}
HOST = '0.0.0.0'
PORT = 1511
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((HOST, PORT))
server.listen(999999)
print('Server running on [%s:%i]' % (HOST, PORT))
while True:
try:
conn, addr = server.accept()
print('Incoming connection from [%s]' % str(addr))
connections[addr] = multiprocessing.Process(target=comm, args=(conn, addr)).run()
except:
pass