-
Notifications
You must be signed in to change notification settings - Fork 71
/
non_compliance_nonzero_ediv_rand.py
executable file
·473 lines (404 loc) · 18.2 KB
/
non_compliance_nonzero_ediv_rand.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
#!/usr/bin/python
import importlib
import os
import platform
import sys
from binascii import hexlify
from time import sleep
# extra libs
sys.path.insert(0, os.getcwd() + '/') # If the user runs this on previous path
sys.path.insert(0, os.getcwd() + '/libs') # If the user runs this on previous path
sys.path.insert(0, os.getcwd() + '/../libs')
sys.path.insert(0, os.getcwd() + '/../')
import colorama
from colorama import Fore
from drivers.NRF52_dongle import NRF52Dongle
from scapy.layers.bluetooth4LE import *
from scapy.layers.bluetooth import *
from scapy.packet import Raw
from scapy.utils import raw
from timeout_lib import start_timeout, disable_timeout, update_timeout
from Crypto.Cipher import AES
try:
importlib.import_module('BLESMPServer')
except:
print(Fore.RED + "Please install the BLESMPServer library by running './install_smp_server.sh'")
import BLESMPServer
# Default master address
master_address = '5d:36:ac:90:0b:20'
access_address = 0x9a328370
# Normal pairing request for secure pairing (uncomment the following to choose pairing request method)
# pairing_iocap = 0x01 # DisplayYesNo
pairing_iocap = 0x03 # NoInputNoOutput
# pairing_iocap = 0x04 # KeyboardDisplay
# paring_auth_request = 0x00 # No bounding
# paring_auth_request = 0x01 # Bounding
paring_auth_request = 0x08 | + 0x01 # Le Secure Connection + bounding
# paring_auth_request = 0x04 | 0x01 # MITM + bounding
# paring_auth_request = 0x08 | 0x04 | 0x01 # Le Secure Connection + MITM + bounding
print(Fore.YELLOW + 'Using IOCap: ' + hex(pairing_iocap) + ', Auth REQ: ' + hex(paring_auth_request))
# Internal vars
script_folder = os.path.dirname(os.path.realpath(__file__))
SCAN_TIMEOUT = 3
CRASH_TIMEOUT = 6
none_count = 0
end_connection = False
connecting = False
conn_skd = None
conn_iv = None
conn_ltk = None
conn_tx_packet_counter = 0
conn_rx_packet_counter = 0
encryption_enabled = False
pairing_procedure = False
crashed = False
version_received = False
fragment = False
fragment_start = False
fragment_left = False
switch_ediv_rand = 0
slave_txaddr = 0 # use public address by default
slave_ever_connected = False
ediv = '\x00'
rand = '\x00'
run_script = True
pairing_rejections = 0
noncompliances = {}
tests = 0
addr_type = {
0: 'Public',
1: 'Random'
}
# Autoreset colors
colorama.init(autoreset=True)
# Get serial port from command line
if len(sys.argv) >= 2:
serial_port = sys.argv[1]
elif platform.system() == 'Linux':
serial_port = '/dev/ttyACM0'
elif platform.system() == 'Windows':
serial_port = 'COM1'
else:
print(Fore.RED + 'Platform not identified')
sys.exit(0)
print(Fore.YELLOW + 'Serial port: ' + serial_port)
# Get advertiser_address from command line (peripheral addr)
if len(sys.argv) >= 3:
advertiser_address = sys.argv[2].upper()
else:
advertiser_address = 'A4:C1:38:D8:AD:B8'
print(Fore.YELLOW + 'Advertiser Address: ' + advertiser_address.upper())
def crash_timeout():
if slave_ever_connected:
print(Fore.RED + "No advertisement from " + advertiser_address.upper() +
' received\nThe device may have crashed!!!')
disable_timeout('scan_timeout')
def switch_ediv_rand_test():
global switch_ediv_rand, ediv, rand, tests, run_script
if switch_ediv_rand == 0:
ediv = b'\xff'
rand = b'\x00'
switch_ediv_rand = 1
elif switch_ediv_rand == 1:
ediv = b'\x00'
rand = b'\xff'
switch_ediv_rand = 2
elif switch_ediv_rand == 2:
ediv = b'\xff'
rand = b'\xff'
switch_ediv_rand = 0
tests += 1
if tests > 4:
run_script = False
def scan_timeout():
global connecting
connecting = False
scan_req = BTLE() / BTLE_ADV(RxAdd=slave_txaddr) / BTLE_SCAN_REQ(
ScanA=master_address,
AdvA=advertiser_address)
driver.send(scan_req)
start_timeout('scan_timeout', SCAN_TIMEOUT, scan_timeout)
def set_security_settings(pkt):
global paring_auth_request
# Change security parameters according to slave security request
# paring_auth_request = pkt[SM_Security_Request].authentication
print(Fore.YELLOW + 'Slave requested authentication of ' + hex(pkt[SM_Security_Request].authentication))
print(Fore.YELLOW + 'We are using authentication of ' + hex(paring_auth_request))
def bt_crypto_e(key, plaintext):
aes = AES.new(key, AES.MODE_ECB)
return aes.encrypt(str(plaintext))
def send_pairing_request():
global pairing_procedure, access_address, pairing_iocap, paring_auth_request, master_address, advertiser_address
master_address_raw = ''.join(map(lambda x: chr(int(x, 16)), master_address.split(':')))
slave_address_raw = ''.join(map(lambda x: chr(int(x, 16)), advertiser_address.split(':')))
BLESMPServer.set_pin_code('\x00' * 4)
BLESMPServer.configure_connection(master_address_raw, slave_address_raw, 0,
pairing_iocap, paring_auth_request)
hci_res = BLESMPServer.pairing_request()
if hci_res:
pairing_procedure = True
# Pairing request
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / L2CAP_Hdr() / HCI_Hdr(hci_res)[SM_Hdr]
driver.send(pkt)
def defragment_l2cap(pkt):
global fragment, fragment_start, fragment_left
# Handle L2CAP fragment
if L2CAP_Hdr in pkt and pkt[L2CAP_Hdr].len + 4 > pkt[BTLE_DATA].len:
fragment_start = True
fragment_left = pkt[L2CAP_Hdr].len
fragment = raw(pkt)[:-3]
return None
elif fragment_start and BTLE_DATA in pkt and pkt[BTLE_DATA].LLID == 0x01:
fragment_left -= pkt[BTLE_DATA].len + 4
fragment += raw(pkt[BTLE_DATA].payload)
if pkt[BTLE_DATA].len >= fragment_left:
fragment_start = False
pkt = BTLE(fragment + b'\x00\x00\x00')
pkt.len = len(pkt[BTLE_DATA].payload) # update ble header length
fragment_start = False
return pkt
else:
return None
else:
fragment_start = False
return pkt
def send_encrypted(pkt):
global conn_tx_packet_counter
raw_pkt = bytearray(raw(pkt))
aa = raw_pkt[:4]
header = raw_pkt[4] # Get ble header
length = raw_pkt[5] + 4 # add 4 bytes for the mic
crc = '\x00\x00\x00' # Dummy CRC (Dongle automatically calculates it)
pkt_count = bytearray(struct.pack("<Q", conn_tx_packet_counter)[:5]) # convert only 5 bytes
pkt_count[4] |= 0x80 # Set for master -> slave
nonce = pkt_count + conn_iv
aes = AES.new(conn_session_key, AES.MODE_CCM, nonce=nonce, mac_len=4) # mac = mic
aes.update(chr(header & 0xE3)) # Calculate mic over header cleared of NES, SN and MD
enc_pkt, mic = aes.encrypt_and_digest(raw_pkt[6:-3]) # get payload and exclude 3 bytes of crc
conn_tx_packet_counter += 1 # Increment packet counter
driver.raw_send(aa + chr(header) + chr(length) + enc_pkt + mic + crc)
print(Fore.YELLOW + "TX ---> [Encrypted]{" + pkt.summary()[7:] + '}')
def receive_encrypted(pkt):
global conn_rx_packet_counter
raw_pkt = bytearray(raw(pkt))
aa = raw_pkt[:4]
header = raw_pkt[4] # Get ble header
length = raw_pkt[5] # add 4 bytes for the mic
if length is 0 or length < 5:
# ignore empty PDUs
return pkt
# Subtract packet length 4 bytes of MIC
length -= 4
# Update nonce before decrypting
pkt_count = bytearray(struct.pack("<Q", conn_rx_packet_counter)[:5]) # convert only 5 bytes
pkt_count[4] &= 0x7F # Clear bit 7 for slave -> master
nonce = pkt_count + conn_iv
aes = AES.new(conn_session_key, AES.MODE_CCM, nonce=nonce, mac_len=4) # mac = mic
aes.update(chr(header & 0xE3)) # Calculate mic over header cleared of NES, SN and MD
dec_pkt = aes.decrypt(raw_pkt[6:-4 - 3]) # get payload and exclude 3 bytes of crc
conn_rx_packet_counter += 1
try:
mic = raw_pkt[6 + length: -3] # Get mic from payload and exclude crc
aes.verify(mic)
return BTLE(aa + chr(header) + chr(length) + dec_pkt + b'\x00\x00\x00')
except Exception as e:
print(Fore.RED + "MIC Wrong: " + str(e))
return BTLE(aa + chr(header) + chr(length) + dec_pkt + b'\x00\x00\x00')
# Open serial port of NRF52 Dongle
try:
driver = NRF52Dongle(serial_port, '115200', logs_pcap=True,
pcap_filename=script_folder + '/../logs/non_compliance_nonzero_ediv_rand.pcap')
except Exception as e:
print(Fore.RED + str(e))
print(Fore.RED + 'Make sure the nRF52 dongle is properly recognized by your computer')
exit(0)
# Send scan request
scan_req = BTLE() / BTLE_ADV(RxAdd=0) / BTLE_SCAN_REQ(
ScanA=master_address,
AdvA=advertiser_address)
driver.send(scan_req)
start_timeout('scan_timeout', SCAN_TIMEOUT, scan_timeout)
start_timeout('crash_timeout', CRASH_TIMEOUT, crash_timeout)
print(Fore.YELLOW + 'Waiting advertisements from ' + advertiser_address)
while run_script:
pkt = None
# Receive packet from the NRF52 Dongle
data = driver.raw_receive()
if data:
# Decode Bluetooth Low Energy Data
if encryption_enabled:
pkt = BTLE(data)
pkt = receive_encrypted(pkt) # Decrypt Link Layer
else:
pkt = BTLE(data) # Receive plain text Link Layer
pkt = defragment_l2cap(pkt)
# if packet is incorrectly decoded, you may not be using the dongle
if pkt is None:
none_count += 1
if none_count >= 16:
print(Fore.RED + 'NRF52 Dongle not detected')
sys.exit(0)
continue
elif BTLE_DATA in pkt and BTLE_EMPTY_PDU not in pkt:
update_timeout('scan_timeout')
# Print slave data channel PDUs summary
print(Fore.MAGENTA + "RX <--- " + pkt.summary()[7:])
if BTLE_DATA in pkt:
none_count = 0
update_timeout('crash_timeout')
# --------------- Process Link Layer Packets here ------------------------------------
# Check if packet from advertised is received
if (
BTLE_SCAN_RSP in pkt or BTLE_ADV_IND in pkt) and pkt.AdvA == advertiser_address.lower() and connecting == False:
connecting = True
end_connection = False
update_timeout('scan_timeout')
update_timeout('crash_timeout')
start_timeout('scan_timeout', SCAN_TIMEOUT, scan_timeout)
conn_rx_packet_counter = 0
conn_tx_packet_counter = 0
encryption_enabled = False
slave_txaddr = pkt.TxAdd
print(Fore.GREEN + advertiser_address.upper() + ': ' + pkt.summary()[7:] + ' Detected')
print(Fore.GREEN + 'Slave address type: ' + addr_type[slave_txaddr])
# Send connection request to advertiser
conn_request = BTLE() / BTLE_ADV(RxAdd=slave_txaddr, TxAdd=0) / BTLE_CONNECT_REQ(
InitA=master_address,
AdvA=advertiser_address,
AA=access_address, # Access address (any)
crc_init=0x179a9c, # CRC init (any)
win_size=2, # 2.5 of windows size (anchor connection window size)
win_offset=1, # 1.25ms windows offset (anchor connection point)
interval=16, # 20ms connection interval
latency=0, # Slave latency (any)
timeout=50, # Supervision timeout, 500ms (any)
chM=0x1FFFFFFFFF, # Any
hop=5, # Hop increment (any)
SCA=0, # Clock tolerance
)
# Yes, we're sending raw link layer messages in Python. Don't tell Bluetooth SIG as this is forbidden by
# them!!!
driver.send(conn_request)
if BTLE_DATA in pkt and connecting == True:
connecting = False
update_timeout('crash_timeout')
slave_ever_connected = True
if LL_VERSION_IND in pkt:
version_received = True
# Send version indication response
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_VERSION_IND(version='4.2')
driver.send(pkt)
print(Fore.GREEN + 'Slave Connected (Link Layer data channel established)')
if SM_Security_Request in pkt:
set_security_settings(pkt)
# Send Feature request
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_FEATURE_REQ(
feature_set='le_encryption+le_data_len_ext')
driver.send(pkt)
elif SM_Security_Request in pkt:
set_security_settings(pkt)
elif LL_FEATURE_RSP in pkt:
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_LENGTH_REQ(
max_tx_bytes=247 + 4, max_rx_bytes=247 + 4)
driver.send(pkt)
elif LL_LENGTH_RSP in pkt or LL_UNKNOWN_RSP in pkt:
pkt = BTLE(access_addr=access_address) / \
BTLE_DATA() / L2CAP_Hdr() / ATT_Hdr() / ATT_Exchange_MTU_Request(mtu=247)
driver.send(pkt)
elif LL_LENGTH_REQ in pkt:
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_LENGTH_RSP(
max_tx_bytes=247 + 4, max_rx_bytes=247 + 4)
driver.send(pkt)
elif ATT_Exchange_MTU_Response in pkt:
# Send version indication request
if version_received == False:
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_VERSION_IND(version='4.2')
driver.send(pkt)
else:
send_pairing_request()
elif LL_VERSION_IND in pkt:
send_pairing_request()
elif pairing_procedure and SM_Hdr in pkt:
# Handle pairing response and so on
smp_answer = BLESMPServer.send_hci(raw(HCI_Hdr() / HCI_ACL_Hdr() / L2CAP_Hdr() / pkt[SM_Hdr]))
if smp_answer is not None and isinstance(smp_answer, list):
for res in smp_answer:
res = HCI_Hdr(res) # type: HCI_Hdr
if SM_Hdr in res:
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / L2CAP_Hdr() / res[SM_Hdr]
if encryption_enabled:
send_encrypted(pkt)
else:
driver.send(pkt)
elif HCI_Cmd_LE_Start_Encryption_Request in res:
conn_ltk = res.ltk
print(Fore.GREEN + "[!] STK/LTK received from SMP server: " + hexlify(res.ltk).upper())
conn_iv = b'\x00' * 4 # set IVm (IV of master)
conn_skd = b'\x00' * 8 # set SKDm (session key diversifier part of master)
# CHange ediv and rand
switch_ediv_rand_test()
enc_request = BTLE(
access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_ENC_REQ(ediv=ediv,
rand=rand,
skdm=conn_iv,
ivm=conn_skd)
driver.send(enc_request)
elif LL_ENC_RSP in pkt:
# Get IVs and SKDs from slave encryption response
conn_skd += pkt[LL_ENC_RSP].skds # SKD = SKDm || SKDs
conn_iv += pkt[LL_ENC_RSP].ivs # IV = IVm || IVs
conn_session_key = bt_crypto_e(conn_ltk[::-1], conn_skd[::-1])
conn_packet_counter = 0
print(Fore.GREEN + 'Received SKD: ' + hexlify(conn_skd))
print(Fore.GREEN + 'Received IV: ' + hexlify(conn_iv))
print(Fore.GREEN + 'Stored LTK: ' + hexlify(conn_ltk))
print(Fore.GREEN + 'AES-CCM Key: ' + hexlify(conn_session_key))
elif LL_SLAVE_FEATURE_REQ in pkt:
# Send Feature request
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_FEATURE_RSP(
feature_set='le_encryption+le_data_len_ext')
driver.send(pkt)
# Slave will send LL_ENC_RSP before the LL_START_ENC_RSP
elif LL_START_ENC_REQ in pkt:
encryption_enabled = True
pairing_procedure = False
pkt = BTLE(access_addr=access_address) / BTLE_DATA() / CtrlPDU() / LL_START_ENC_RSP()
send_encrypted(pkt)
elif LL_START_ENC_RSP in pkt:
print(Fore.GREEN + 'Link Encrypted')
print (Fore.RED + '[Noncompliance, ediv=' + hexlify(ediv) + ', rand=' + hexlify(rand) + ']\n' +
'Peripheral accepted nonzero ediv or rand after pairing procedure\n'
'Restarting test...')
end_connection = True
noncompliances[switch_ediv_rand] = {"ediv": ediv, "rand": rand}
# exit(0)
elif LL_REJECT_IND in pkt or SM_Failed in pkt:
print(Fore.YELLOW + 'Peripheral is rejecting pairing')
pairing_rejections += 1
if pairing_rejections >= 5:
run_script = False
end_connection = True
elif L2CAP_Hdr in pkt and Raw in pkt:
print(Fore.GREEN + 'Peripheral seems OK')
if SM_Failed in pkt:
print(Fore.YELLOW + '[Error] Ensure the peripheral under test accepts the pairing request\n'
'to proceed')
if end_connection:
end_connection = False
encryption_enabled = False
scan_req = BTLE() / BTLE_ADV() / BTLE_SCAN_REQ(
ScanA=master_address,
AdvA=advertiser_address)
print(Fore.YELLOW + 'Connection reset, non-compliant packet was sent')
print(Fore.YELLOW + 'Waiting advertisements from ' + advertiser_address)
driver.send(scan_req)
start_timeout('crash_timeout', CRASH_TIMEOUT, crash_timeout)
sleep(0.01)
if len(noncompliances) > 0:
print(Fore.RED + "Noncompliances detected")
driver.save_pcap()
for n in noncompliances:
print(Fore.RED + '[Noncompliance, ediv=' + hexlify(noncompliances[n]["ediv"]) + ', rand=' + hexlify(
noncompliances[n]["rand"]) + ']')
elif pairing_rejections > 0:
print(Fore.GREEN + "[!] Peripheral complies to zero ediv/rand!!!".upper())