-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathndnMouse-client-udp.py
executable file
·555 lines (450 loc) · 17.8 KB
/
ndnMouse-client-udp.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
#!/usr/bin/env python3
import sys, getopt, time
import socket, ipaddress
import pyautogui
import logging
import pickle
from Crypto import Random
from Crypto.Cipher import AES
import hashlib
from datetime import datetime
def main(argv):
logging_filename = "ndnMouse-log.txt"
logging_level = logging.ERROR
default_address = '192.168.1.2'
default_port = 10888
def printUsage():
print("Usage: ndnMouse-client-udp.py [logging_level_flag]")
print("No flag specified: logging level defaults to errors only")
print(" -h help/print usage")
print(" -d logging level debug")
print(" -i logging level info")
print(" -n logging level none")
# Parse arguments
if len(sys.argv) != 0:
try:
opts, args = getopt.getopt(argv, "dhin")
except getopt.GetoptError:
printUsage()
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
printUsage()
sys.exit()
elif opt in ('-d'):
logging_level = logging.DEBUG
elif opt in ('-i'):
logging_level = logging.INFO
elif opt in ('-n'):
logging_level = logging.CRITICAL # critical level never used
# Set logging level based on flag provided (default to error only)
logging.basicConfig(filename=logging_filename, level=logging_level)
# Prompt user for server address
server_address = getServerAddress(default_address)
#server_port = getSeverPort(default_port) # Just leaving at default for now...
# Prompt user for password
password = getPassword()
# Create server and run it
if not password:
server = ndnMouseClientUDP(server_address, default_port)
else:
server = ndnMouseClientUDPSecure(server_address, default_port, password)
try:
server.run()
except KeyboardInterrupt:
print("\nExiting...")
logging.info("{0} Exiting...".format(datetime.now()))
finally:
server.shutdown()
################################################################################
# Class ndnMouseClientUDP
################################################################################
class ndnMouseClientUDP():
# pyautogui variables
transition_time = 0
pyautogui.FAILSAFE = False
pyautogui.PAUSE = 0
packet_bytes = 16
max_refresh_attempts = 3
def __init__(self, addr, port):
self.server_address = (addr, port)
self.bind_address = ('', port)
self.refresh_attempts = 0
# Establish connection with server
def _openConnection(self):
got_timeout = True
while got_timeout:
message = b"OPEN"
logging.info(str(datetime.now()).encode() + b" Sending message: " + message)
try:
self.sock.sendto(message, self.server_address)
msg, server = self.sock.recvfrom(self.packet_bytes)
logging.info("{0} Received message: {1}".format(datetime.now(), msg))
if msg.startswith(b"OPEN-ACK"):
got_timeout = False
# Reset refresh attempts (so we go back to heartbeat)
self.refresh_attempts = 0
logging.info("{0} Connected to server {1}:{2}.".format(datetime.now(), *server))
except socket.timeout:
continue
# Send messge to refresh the connection (heartbeat)
def _refreshConnection(self):
got_timeout = True
while got_timeout:
message = b"HEART"
logging.info("{0} Sending message: {1}".format(datetime.now(), message))
try:
self.sock.sendto(message, self.server_address)
msg, server = self.sock.recvfrom(self.packet_bytes)
logging.info("{0} Received message: {1}".format(datetime.now(), msg))
if msg.startswith(b"BEAT") or self._handle(msg):
got_timeout = False
# Reset refresh attempts
self.refresh_attempts = 0
logging.info("{0} Connected to server {1}:{2}.".format(datetime.now(), *server))
except socket.timeout:
# Keep track of refresh timeouts and try again
self.refresh_attempts += 1
if self.refresh_attempts >= self.max_refresh_attempts:
return
# Run the server
def run(self):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sock.bind(self.bind_address)
self.sock.settimeout(1.0)
print("Use ctrl+c quit at anytime....")
print("Listening to {0}, port {1}.".format(*self.server_address))
logging.info("{0} Use ctrl+c quit at anytime....".format(datetime.now()))
logging.info("{0} Listening to {1}, port {2}.".format(datetime.now(), *self.server_address))
self._openConnection()
# Receive and process mouse updates forever
while True:
try:
msg, server = self.sock.recvfrom(self.packet_bytes)
except socket.timeout:
if self.refresh_attempts < self.max_refresh_attempts:
self._refreshConnection()
else:
self._openConnection()
continue
logging.info("{0} Received message: {1}".format(datetime.now(), msg))
self._handle(msg)
# Shutdown the server
def shutdown(self):
message = b"CLOSE"
logging.info(str(datetime.now()).encode() + b" Sending message: " + message)
self.sock.sendto(message, self.server_address)
self.sock.close()
############################################################################
# Handle Mouse Functions
############################################################################
# General handler
# Returns true if message could be handled, otherwise false
def _handle(self, msg):
if msg.startswith(b"M") or msg.startswith(b"A"):
self._handleMove(msg)
elif msg.startswith(b"S"):
self._handleScroll(msg)
elif msg.startswith(b"C"):
_, click, updown = msg.decode().split('_')
self._handleClick(click, updown)
elif msg.startswith(b"K"):
_, keypress, updown = msg.decode().split('_')
self._handleKeypress(keypress, updown)
elif msg.startswith(b"T"):
self._handleTypeMessage(msg)
elif msg.startswith(b"BEAT"):
pass # Ignore, out of order heartbeat response
else:
logging.error("{0} Bad command received. Password on server?".format(datetime.now()))
return False
return True
# Handle click commands
def _handleClick(self, click, updown):
if updown == "U": # UP
pyautogui.mouseUp(button=click)
elif updown == "D": # DOWN
pyautogui.mouseDown(button=click)
elif updown == "F": # FULL
pyautogui.click(button=click)
else:
logging.error("{0} Invalid click type: {1} {2}".format(datetime.now(), click, updown))
# Handle keypress commands
def _handleKeypress(self, keypress, updown):
# Decompress certain longer commands
if keypress == "bspace":
keypress = "backspace"
if updown == "U": # UP
pyautogui.keyUp(keypress)
elif updown == "D": # DOWN
pyautogui.keyDown(keypress)
elif updown == "F": # FULL
pyautogui.press(keypress)
else:
logging.error("{0} Invalid keypress type: {1} {2}".format(datetime.now(), keypress, updown))
# Handle custom typed message
# Format of commands: T<msg-to-type> (msg-to-type can be up to 10B)
# b"Thello" (type "hello" on client)
def _handleTypeMessage(self, msg):
type_string = msg.decode()[1:]
pyautogui.typewrite(type_string)
# Handle movement commands
# Format of commands: M<x-4B><y-4B>
# b"A\x00\x00\x01\x90\x00\x00\x01\xf4" (move to absolute pixel coordinate x=400, y=500)
# b"M\xff\xff\xff\xb5\x00\x00\x00\x19" (move 75 left, 25 up relative to current pixel position)
def _handleMove(self, data):
move_type = data[:1]
x = intFromBytes(data[1:5])
y = intFromBytes(data[5:9])
# Move mouse according to move_type (relative or absolute)
if (move_type == b"M"):
pyautogui.moveRel(x, y, self.transition_time)
elif (move_type == b"A"):
pyautogui.moveTo(x, y, self.transition_time)
# Handle two-finger scroll commands
# Format of commands: S<x-4B><y-4B>
# b"S\xff\xff\xff\xb5\x00\x00\x00\x19" (scroll 75 right, 25 up)
def _handleScroll(self, data):
move_type = data[:1]
x = intFromBytes(data[1:5])
y = intFromBytes(data[5:9])
# Prevent bug with pyautogui library where x < 10 causes opposite horizontal scrolling behavior
# https://github.com/asweigart/pyautogui/issues/154
if not (-9 <= x and x <= -1):
pyautogui.hscroll(x)
if y:
pyautogui.vscroll(y)
################################################################################
# Class ndnMouseClientUDPSecure
################################################################################
# Packet description
# 1 2 3
# 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2
# -----------------------------------------------------------------
# | IV | Seq | Message (PKCS5 pad) |
# -----------------------------------------------------------------
# <~~~~~~~~~ plaintext ~~~~~~~~~~~><~~~~~~~~~ ciphertext ~~~~~~~~~>
class ndnMouseClientUDPSecure(ndnMouseClientUDP):
# Constants
seq_num_bytes = 4
iv_bytes = 16
key_bytes = 16
aes_block_size = 16
packet_bytes = 32
max_seq_num = 2147483647
def __init__(self, addr, port, password):
super().__init__(addr, port)
self.password = password
self.key = b"" # To be set when we generate a password salt in _openConnection
self.open_key = self._getKeyFromPassword(password)
self.rndfile = Random.new()
# Establish connection with server
def _openConnection(self):
got_timeout = True
while got_timeout:
self.seq_num = 0
iv = self._getNewIV()
self.key = self._getKeyFromPassword(self.password, salt=iv)
# Create message from IV, seq num, and protocol msg
message = intToBytes(self.seq_num) + b"OPEN"
logging.debug(str(datetime.now()).encode() + b" Sending message: " + iv + message)
encrypted_message = self._encryptData(message, self.open_key, iv)
encrypted_message_with_iv = iv + encrypted_message
try:
# Send and receive data
self.sock.sendto(encrypted_message_with_iv, self.server_address)
data, server = self.sock.recvfrom(self.packet_bytes)
# Extract cleartext IV and ciphertext response, then decrypt it
server_iv = data[:self.iv_bytes]
encrypted = data[self.iv_bytes:]
decrypted = self._decryptData(encrypted, self.key, server_iv)
# If decrypted response is what we expect...
if decrypted.startswith(b"\x00\x00\x00\x01OPEN-ACK"):
# Incrememt the seq num (for this case it will always be 1)
self.seq_num = 1
# Reset refresh attempts (so we go back to heartbeat)
self.refresh_attempts = 0
# Break out of the loop
got_timeout = False
logging.info("{0} Connected to server {1}:{2}.".format(datetime.now(), *server))
except socket.timeout:
# No response, try again
continue
# Send messge to refresh the connection (heartbeat)
def _refreshConnection(self):
got_timeout = True
while got_timeout:
# Always increment seq num before sending any message (except opener msg)
self.seq_num = self._getNextSeqNum()
iv = self._getNewIV()
# Create message from IV, seq num, and protocol msg
message = intToBytes(self.seq_num) + b"HEART"
logging.debug(str(datetime.now()).encode() + b" Sending message: " + iv + message)
encrypted_message = self._encryptData(message, self.key, iv)
encrypted_message_with_iv = iv + encrypted_message
try:
# Send and receive data
self.sock.sendto(encrypted_message_with_iv, self.server_address)
data, server = self.sock.recvfrom(self.packet_bytes)
# Extract cleartext IV and ciphertext response, then decrypt it
server_iv = data[:self.iv_bytes]
encrypted = data[self.iv_bytes:]
decrypted = self._decryptData(encrypted, self.key, server_iv)
server_seq_num = intFromBytes(decrypted[:self.seq_num_bytes])
# If decrypted response has a valid seq num, and has the correct response...
if (server_seq_num > self.seq_num or self.seq_num == self.max_seq_num) and decrypted[self.seq_num_bytes:].startswith(b"BEAT"):
# Update our seq num to synchronize with server
self.seq_num = server_seq_num
# Reset refresh attempts
self.refresh_attempts = 0
# Break out of the loop
got_timeout = False
logging.info("{0} Connected to server {1}:{2}.".format(datetime.now(), *server))
except socket.timeout:
logging.info("{0} Refresh Timeout!".format(datetime.now()))
# Keep track of refresh timeouts and try again
self.refresh_attempts += 1
if self.refresh_attempts >= self.max_refresh_attempts:
return
# Run the server
def run(self):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sock.bind(self.bind_address)
self.sock.settimeout(1.0)
print("Use ctrl+c quit at anytime....")
print("Listening to {0}, port {1}.".format(*self.server_address))
logging.info("{0} Use ctrl+c quit at anytime....".format(datetime.now()))
logging.info("{0} Listening to {1}, port {2}.".format(datetime.now(), *self.server_address))
self._openConnection()
# Receive and process mouse updates forever
while True:
try:
data, server = self.sock.recvfrom(self.packet_bytes)
except socket.timeout:
# Try to refresh connection (heartbeat) until failed too many times
if self.refresh_attempts < self.max_refresh_attempts:
self._refreshConnection()
# Give up on heartbeat and just try to reopen connection
else:
self._openConnection()
continue
logging.debug("{0} Received from server {1}:{2}: {3}".format(datetime.now(), server[0], server[1], data))
# Extract cleartext IV and ciphertext message, then decrypt it
server_iv = data[:self.iv_bytes]
encrypted = data[self.iv_bytes:]
decrypted = self._decryptData(encrypted, self.key, server_iv)
server_seq_num = intFromBytes(decrypted[:self.seq_num_bytes])
# If decrypted message has a valid seq num...
if server_seq_num > self.seq_num or self.seq_num == self.max_seq_num:
self.seq_num = server_seq_num
msg = decrypted[self.seq_num_bytes:]
self._handle(msg)
# Shutdown the server
def shutdown(self):
self.seq_num = self._getNextSeqNum()
iv = self._getNewIV()
message = intToBytes(self.seq_num) + b"CLOSE"
logging.debug(str(datetime.now()).encode() + b" Sending message: " + message)
encrypted_message = self._encryptData(message, self.key, iv)
encrypted_message_with_iv = iv + encrypted_message
self.sock.sendto(encrypted_message_with_iv, self.server_address)
self.sock.close()
############################################################################
# Encryption Helpers
############################################################################
# Encrypt data
def _encryptData(self, message, key, iv):
logging.info(str(datetime.now()).encode() + b" Data SENT: " + message)
cipher = AES.new(key, AES.MODE_CBC, iv)
message = self._PKCS5Pad(message, self.packet_bytes - self.iv_bytes)
encrypted = cipher.encrypt(message)
logging.debug(str(datetime.now()).encode() + b" Encrypting data SENT: " + encrypted)
return encrypted
# Decrypt data
def _decryptData(self, encrypted, key, iv):
logging.debug(str(datetime.now()).encode() + b" Encrypted data RECEIVED: " + encrypted)
cipher = AES.new(key, AES.MODE_CBC, iv)
decrypted = self._PKCS5Unpad(cipher.decrypt(encrypted))
logging.info(str(datetime.now()).encode() + b" Data RECEIVED: " + decrypted)
return decrypted
# Get a new random initialization vector (IV)
def _getNewIV(self):
return self.rndfile.read(self.iv_bytes)
# Get next unused seq num; handle if overflow occurs
def _getNextSeqNum(self):
if self.seq_num == self.max_seq_num:
return 0
else:
return self.seq_num + 1
# Hash password and salt (if provided) into key
# password: string
# salt: byte string
def _getKeyFromPassword(self, password, salt=b""):
sha = hashlib.sha256()
sha.update(password.encode() + salt)
# Only take first 128 bits (16 B)
return sha.digest()[:self.key_bytes]
# PKCS5Padding padder, allows for longer than 16 byte pads by specifying maxPad
def _PKCS5Pad(self, s, maxPad=aes_block_size):
return s + (maxPad - len(s) % maxPad) * chr(maxPad - len(s) % maxPad).encode()
# PKCS5Padding unpadder
def _PKCS5Unpad(self, s):
return s[0:-ord(chr(s[-1]))]
################################################################################
# User Input Functions
################################################################################
# Prompt user for server address and port, and validate
def getServerAddress(default_addr):
last_ip_addr = "ndnMouse-temp.pkl"
# Try to get pickle of last IP address
try:
with open(last_ip_addr, 'rb') as fp:
last_addr = pickle.load(fp)
except IOError:
last_addr = default_addr
addr = pyautogui.prompt(text="Enter server IP address", title="Server Address", default=last_addr)
# Validate address
try:
ipaddress.ip_address(addr)
except ValueError:
pyautogui.alert(text="Address \"{0}\" is not valid!".format(addr), title="Invalid Address", button='Exit')
sys.exit(1)
# Save the last used IP address to pickle file
with open(last_ip_addr, 'wb') as fp:
pickle.dump(addr, fp)
return addr
# Prompt user for server port, and validate
def getSeverPort(default_port):
port_string = pyautogui.prompt(text="Enter server port number", title="Server Port", default=default_port)
# Validate port
try:
port = int(port_string)
if port < 1 or port > 65535:
raise ValueError
except ValueError:
pyautogui.alert(text="Port \"{0}\" is not valid! Please enter a port between 1-65535.".format(port_string), title="Invalid Port", button='Exit')
sys.exit(1)
return port
# Prompt user for password, and validate it
def getPassword():
password = pyautogui.password(text="Enter the server's password (optional)", title="Password", mask='*')
# if not password:
# pyautogui.alert(text="Password should not be empty!", title="Invalid Password", button='Exit')
# sys.exit(1)
return password
################################################################################
# Helper Functions
################################################################################
# Takes signed integer and tranforms to byte string (truncating if necessary)
def intToBytes(x):
try:
return x.to_bytes(4, 'big', signed=True)
except OverflowError:
x %= 2147483648
return x.to_bytes(4, 'big', signed=True)
# Takes byte string and transforms to signed integer
def intFromBytes(xbytes):
return int.from_bytes(xbytes, 'big', signed=True)
# Strip off script name in arg list
if __name__ == "__main__":
main(sys.argv[1:])