-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
183 lines (140 loc) · 5.37 KB
/
client.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#from server import server
import hashlib
import os
import socket
import pickle
from cryptography.fernet import Fernet
from cryptography.hazmat.primitives import hashes
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
import base64
class tree:
def __init__(self, l, r):
self.l = l
self.r = r
self.hash = ""
if r-l == 1: return
mid = (l + r) / 2
self.lnode = tree(l, mid)
self.rnode = tree(mid, r)
def insert(self, hash, index):
if self.r-self.l == 1:
self.hash = hash
else:
if index < self.lnode.r:
self.lnode.insert(hash, index)
else:
self.rnode.insert(hash, index)
self.hash = hashlib.sha256((self.lnode.hash+self.rnode.hash).encode()).hexdigest()
def remove(self, index):
if self.r-self.l == 1:
self.hash = ""
else:
if index < self.lnode.r:
self.lnode.remove(hash, index)
else:
self.rnode.remove(hash, index)
self.hash = hashlib.sha256((self.lnode.hash+self.rnode.hash).encode()).hexdigest()
def get_hash(self, index):
if self.r-self.l == 1:
return self.hash
if index < self.lnode.r: self.lnode.get_hash(index)
else: self.rnode.get_hash(index)
return self.hash
class client:
def __init__(self, password, host="127.0.0.1", port = 4004):
self.tree = tree(0, 128)
self.salt = os.urandom(16)
self.port = port
self.host = host
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.socket.connect((self.host, self.port)) # Keep connection open
kdf = PBKDF2HMAC(
algorithm=hashes.SHA256(),
length=32,
salt=self.salt,
iterations=1000000
)
self.key = base64.urlsafe_b64encode(kdf.derive(password.encode()))
self.fernet = Fernet(self.key)
def send_request(self, request):
try:
self.socket.sendall(pickle.dumps(request))
response_data = self.socket.recv(4096)
if not response_data:
print("Empty response from server")
return None
response = pickle.loads(response_data)
return response
except (EOFError, pickle.UnpicklingError) as e:
print(f"Error decoding server response: {e}")
return None
except Exception as e:
print(f"Client error: {e}")
return None
def save_data(self, data, index):
encr_data = self.fernet.encrypt(data.encode())
request = {"command": "save", "data": encr_data, "index": index}
response = self.send_request(request)
#server_hash = server.save(encr_data, index) # faktiskt säkert och via nätverk måste fixas
if response["status"] == "ok":
server_hash = response["hash"]
client_hash = hashlib.sha256(encr_data).hexdigest()
self.tree.insert(client_hash, index)
if client_hash != server_hash:
print("Imposter!!")
self.tree.remove(index)
if "message" in response:
msg = response["message"]
print(f"Error reading data, {msg}")
def get_data(self, index):
request = {"command": "get", "index": index}
response = self.send_request(request)
if response["status"] == "ok":
encr_data = response["data"]
server_hash = response["hash"]
if server_hash != self.tree.get_hash(index):
print("Imposter!")
return None
return self.fernet.decrypt(encr_data).decode()
if "message" in response:
msg = response["message"]
print(f"Error reading data, {msg}")
return None
def close(self):
self.socket.close()
def cli(self):
print("Client started. Type 'save [index] [message]' or 'get [index]'. Type 'exit' to quit.")
while True:
try:
command = input("> ").strip()
if command.lower() == "exit":
print("Closing connection...")
self.close()
break
parts = command.split(" ", 2)
if len(parts) < 2:
continue
# Parse the input
action, index = parts[0], parts[1]
if not index.isdigit():
print("Invalid index. Must be a number.")
continue
index = int(index)
# Save the message to the index
if action.lower() == "save":
if len(parts) < 3:
print("Missing message. Usage: save [index] [message]")
continue
message = parts[2]
self.save_data(message, index)
# Get the data at the index
elif action.lower() == "get":
print(self.get_data(index))
else:
print("Try again...")
except KeyboardInterrupt:
print("\nClosing connection...")
self.close()
break
client = client("password")
client.cli()