-
Notifications
You must be signed in to change notification settings - Fork 302
/
ble_read_state.py
1308 lines (1178 loc) · 48.1 KB
/
ble_read_state.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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
# Author: Dmitry Chastuhin
# Twitter: https://twitter.com/_chipik
# web: https://hexway.io
# Twitter: https://twitter.com/_hexway
import random
import re
import sys
import time
import json
import curses
import hashlib
import urllib3
import sqlite3
import requests
import argparse
import npyscreen
import subprocess
from os import path
from bs4 import BeautifulSoup
from prettytable import PrettyTable
from threading import Thread, Timer
import bluetooth._bluetooth as bluez
from utils.bluetooth_utils import (toggle_device, enable_le_scan, parse_le_advertising_events, disable_le_scan,
raw_packet_to_str, start_le_advertising, stop_le_advertising)
help_desc = '''
Apple bleee. Apple device sniffer
---chipik
'''
urllib3.disable_warnings()
parser = argparse.ArgumentParser(description=help_desc, formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('-c', '--check_hash', action='store_true', help='Get phone number by hash')
parser.add_argument('-n', '--check_phone', action='store_true', help='Get user info by phone number (TrueCaller/etc)')
parser.add_argument('-r', '--check_region', action='store_true', help='Get phone number region info')
parser.add_argument('-l', '--check_hlr', action='store_true',
help='Get phone number info by HLR request (hlrlookup.com)')
parser.add_argument('-s', '--ssid', action='store_true', help='Get SSID from requests')
parser.add_argument('-m', '--message', action='store_true', help='Send iMessage to the victim')
parser.add_argument('-a', '--airdrop', action='store_true', help='Get info from AWDL')
parser.add_argument('-d', '--active', action='store_true', help='Get devices names (gatttool)')
parser.add_argument('-v', '--verb', help='Verbose output. Filter actions (All, Nearby, Handoff, etc)')
parser.add_argument('-t', '--ttl', type=int, default=15, help='ttl')
args = parser.parse_args()
if args.check_phone:
# import from TrueCaller API lib (sorry, but we did some RE for that :))
print("Sorry, but we don't provide this functionality as a part of this PoC")
exit(1)
if args.airdrop:
from opendrop2.cli import AirDropCli, get_devices
hash2phone_url = '' # URL to hash2phone matcher
hash2phone_db = "hash2phone/phones.db"
hlr_key = '' # hlrlookup.com key here
hlr_pwd = '' # hlrlookup.com password here
hlr_api_url = 'https://www.hlrlookup.com/api/hlr/?apikey={}&password={}&msisdn='.format(hlr_key, hlr_pwd)
region_check_url = '' # URL to region checker here
imessage_url = '' # URL to iMessage sender (sorry, but we did some RE for that :) )
iwdev = 'wlan0'
apple_company_id = 'ff4c00'
dev_id = 0 # the bluetooth device is hci0
toggle_device(dev_id, True)
sock = 0
titles = ['Mac', 'State', 'Device', 'WI-FI', 'OS', 'Phone', 'Time', 'Notes']
dev_sig = {'02010': 'MacBook', '02011': 'iPhone'}
dev_types = ["iPad", "iPhone", "MacOS", "AirPods", "Powerbeats3", "BeatsX", "Beats Solo3"]
phones = {}
resolved_devs = []
resolved_macs = []
resolved_numbers = []
victims = []
verb_messages = []
phone_number_info = {}
hash2phone = {}
dictOfss = {}
proxies = {}
verify = False
# not sure about 1b, 13, 0a, 1a, 17
# phone_states2 = {
# '01':'Off',
# '03':'Off',
# '07':'Lock screen',
# '09':'Off',
# '0a':'Off',
# '0b':'Home screen',
# '0e':'Calling',
# '11':'Home screen',
# '13':'Off',
# '17':'Lock screen',
# '18':'Off',
# '1a':'Off',
# '1b':'Home screen',
# '1c':'Home screen',
# '47':'Lock screen',
# '4b':'Home screen',
# '4e':'Outgoing call',
# '57':'Lock screen',
# '5a':'Off',
# '5b':'Home screen',
# '5e':'Incoming call',
# }
phone_states = {
'01': 'Disabled',
'03': 'Idle',
'05': 'Music',
'07': 'Lock screen',
'09': 'Video',
'0a': 'Home screen',
'0b': 'Home screen',
'0d': 'Driving',
'0e': 'Incoming call',
'11': 'Home screen',
'13': 'Off',
'17': 'Lock screen',
'18': 'Off',
'1a': 'Off',
'1b': 'Home screen',
'1c': 'Home screen',
'23': 'Off',
'47': 'Lock screen',
'4b': 'Home screen',
'4e': 'Outgoing call',
'57': 'Lock screen',
'5a': 'Off',
'5b': 'Home screen',
'5e': 'Outgoing call',
'67': 'Lock screen',
'6b': 'Home screen',
'6e': 'Incoming call',
}
airpods_states = {
'00': 'Case:Closed',
'01': 'Case:All out',
'02': 'L:out',
'03': 'L:out',
'05': 'R:out',
'09': 'R:out',
'0b': 'LR:in',
'11': 'R:out',
'13': 'R:in',
'15': 'R:in case',
'20': 'L:out',
'21': 'Case:All out',
'22': 'Case:L out',
'23': 'R:out',
'29': 'L:out',
'2b': 'LR:in',
'31': 'Case:L out',
'33': 'Case:L out',
'50': 'Case:open',
'51': 'L:out',
'53': 'L:in',
'55': 'Case:open',
'70': 'Case:open',
'71': 'Case:R out',
'73': 'Case:R out',
'75': 'Case:open',
}
devices_models = {
"i386": "iPhone Simulator",
"x86_64": "iPhone Simulator",
"iPhone1,1": "iPhone",
"iPhone1,2": "iPhone 3G",
"iPhone2,1": "iPhone 3GS",
"iPhone3,1": "iPhone 4",
"iPhone3,2": "iPhone 4 GSM Rev A",
"iPhone3,3": "iPhone 4 CDMA",
"iPhone5,1": "iPhone 5 (GSM)",
"iPhone4,1": "iPhone 4S",
"iPhone5,2": "iPhone 5 (GSM+CDMA)",
"iPhone5,3": "iPhone 5C (GSM)",
"iPhone5,4": "iPhone 5C (Global)",
"iPhone6,1": "iPhone 5S (GSM)",
"iPhone6,2": "iPhone 5S (Global)",
"iPhone7,1": "iPhone 6 Plus",
"iPhone7,2": "iPhone 6",
"iPhone8,1": "iPhone 6s",
"iPhone8,2": "iPhone 6s Plus",
"iPhone8,3": "iPhone SE (GSM+CDMA)",
"iPhone8,4": "iPhone SE (GSM)",
"iPhone9,1": "iPhone 7",
"iPhone9,2": "iPhone 7 Plus",
"iPhone9,3": "iPhone 7",
"iPhone9,4": "iPhone 7 Plus",
"iPhone10,1": "iPhone 8",
"iPhone10,2": "iPhone 8 Plus",
"iPhone10,3": "iPhone X Global",
"iPhone10,4": "iPhone 8",
"iPhone10,5": "iPhone 8 Plus",
"iPhone10,6": "iPhone X GSM",
"iPhone11,2": "iPhone XS",
"iPhone11,4": "iPhone XS Max",
"iPhone11,6": "iPhone XS Max Global",
"iPhone11,8": "iPhone XR",
"MacBookPro15,1": "MacBook Pro 15, 2019",
"MacBookPro15,2": "MacBook Pro 13, 2019",
"MacBookPro15,1": "MacBook Pro 15, 2018",
"MacBookPro15,2": "MacBook Pro 13, 2018",
"MacBookPro14,3": "MacBook Pro 15, 2017",
"MacBookPro14,2": "MacBook Pro 13, 2017",
"MacBookPro14,1": "MacBook Pro 13, 2017",
"MacBookPro13,3": "MacBook Pro 15, 2016",
"MacBookPro13,2": "MacBook Pro 13, 2016",
"MacBookPro13,1": "MacBook Pro 13, 2016",
"MacBookPro11,4": "MacBook Pro 15, mid 2015",
"MacBookPro11,5": "MacBook Pro 15, mid 2015",
"MacBookPro12,1": "MacBook Pro 13, ear 2015",
"MacBookPro11,2": "MacBook Pro 15, mid 2014",
"MacBookPro11,3": "MacBook Pro 15, mid 2014",
"MacBookPro11,1": "MacBook Pro 13, mid 2014",
"MacBookPro11,2": "MacBook Pro 15, end 2013",
"MacBookPro11,3": "MacBook Pro 15, end 2013",
"MacBookPro10,1": "MacBook Pro 15, ear 2013",
"MacBookPro11,1": "MacBook Pro 13, end 2013",
"MacBookPro10,2": "MacBook Pro 13, ear 2013",
"MacBookPro10,1": "MacBook Pro 15, mid 2012",
"MacBookPro9,1": "MacBook Pro 15, mid 2012",
"MacBookPro10,2": "MacBook Pro 15, mid 2012",
"MacBookPro9,2": "MacBook Pro 15, mid 2012",
"MacBookPro8,3": "MacBook Pro 17, end 2011",
"MacBookPro8,3": "MacBook Pro 17, ear 2011",
"MacBookPro8,2": "MacBook Pro 15, end 2011",
"MacBookPro8,2": "MacBook Pro 15, ear 2011",
"MacBookPro8,1": "MacBook Pro 13, end 2011",
"MacBookPro8,1": "MacBook Pro 13, ear 2011",
"MacBookPro6,1": "MacBook Pro 17, mid 2010",
"MacBookPro6,2": "MacBook Pro 15, mid 2010",
"MacBookPro7,1": "MacBook Pro 13, mid 2010",
"MacBookPro5,2": "MacBook Pro 17, mid 2009",
"MacBookPro5,2": "MacBook Pro 17, ear 2009",
"MacBookPro5,3": "MacBook Pro 15, mid 2009",
"MacBookPro5,3": "MacBook Pro 15, mid 2009",
"MacBookPro5,5": "MacBook Pro 13, mid 2009",
"MacBookPro5,1": "MacBook Pro 15, end 2008",
"MacBookPro4,1": "MacBook Pro 17, ear 2008",
"MacBookPro4,1": "MacBook Pro 15, ear 2008",
"iPod1,1": "1st Gen iPod",
"iPod2,1": "2nd Gen iPod",
"iPod3,1": "3rd Gen iPod",
"iPod4,1": "4th Gen iPod",
"iPod5,1": "5th Gen iPod",
"iPod7,1": "6th Gen iPod",
"iPad1,1": "iPad",
"iPad1,2": "iPad 3G",
"iPad2,1": "2nd Gen iPad",
"iPad2,2": "2nd Gen iPad GSM",
"iPad2,3": "2nd Gen iPad CDMA",
"iPad2,4": "2nd Gen iPad New Revision",
"iPad3,1": "3rd Gen iPad",
"iPad3,2": "3rd Gen iPad CDMA",
"iPad3,3": "3rd Gen iPad GSM",
"iPad2,5": "iPad mini",
"iPad2,6": "iPad mini GSM+LTE",
"iPad2,7": "iPad mini CDMA+LTE",
"iPad3,4": "4th Gen iPad",
"iPad3,5": "4th Gen iPad GSM+LTE",
"iPad3,6": "4th Gen iPad CDMA+LTE",
"iPad4,1": "iPad Air (WiFi)",
"iPad4,2": "iPad Air (GSM+CDMA)",
"iPad4,3": "1st Gen iPad Air (China)",
"iPad4,4": "iPad mini Retina (WiFi)",
"iPad4,5": "iPad mini Retina (GSM+CDMA)",
"iPad4,6": "iPad mini Retina (China)",
"iPad4,7": "iPad mini 3 (WiFi)",
"iPad4,8": "iPad mini 3 (GSM+CDMA)",
"iPad4,9": "iPad Mini 3 (China)",
"iPad5,1": "iPad mini 4 (WiFi)",
"iPad5,2": "4th Gen iPad mini (WiFi+Cellular)",
"iPad5,3": "iPad Air 2 (WiFi)",
"iPad5,4": "iPad Air 2 (Cellular)",
"iPad6,3": "iPad Pro (9.7 inch, WiFi)",
"iPad6,4": "iPad Pro (9.7 inch, WiFi+LTE)",
"iPad6,7": "iPad Pro (12.9 inch, WiFi)",
"iPad6,8": "iPad Pro (12.9 inch, WiFi+LTE)",
"iPad6,11": "iPad (2017)",
"iPad6,12": "iPad (2017)",
"iPad7,1": "iPad Pro 2nd Gen (WiFi)",
"iPad7,2": "iPad Pro 2nd Gen (WiFi+Cellular)",
"iPad7,3": "iPad Pro 10.5-inch",
"iPad7,4": "iPad Pro 10.5-inch",
"iPad7,5": "iPad 6th Gen (WiFi)",
"iPad7,6": "iPad 6th Gen (WiFi+Cellular)",
"iPad8,1": "iPad Pro 3rd Gen (11 inch, WiFi)",
"iPad8,2": "iPad Pro 3rd Gen (11 inch, 1TB, WiFi)",
"iPad8,3": "iPad Pro 3rd Gen (11 inch, WiFi+Cellular)",
"iPad8,4": "iPad Pro 3rd Gen (11 inch, 1TB, WiFi+Cellular)",
"iPad8,5": "iPad Pro 3rd Gen (12.9 inch, WiFi)",
"iPad8,6": "iPad Pro 3rd Gen (12.9 inch, 1TB, WiFi)",
"iPad8,7": "iPad Pro 3rd Gen (12.9 inch, WiFi+Cellular)",
"iPad8,8": "iPad Pro 3rd Gen (12.9 inch, 1TB, WiFi+Cellular)",
"Watch1,1": "Apple Watch 38mm case",
"Watch1,2": "Apple Watch 38mm case",
"Watch2,6": "Apple Watch Series 1 38mm case",
"Watch2,7": "Apple Watch Series 1 42mm case",
"Watch2,3": "Apple Watch Series 2 38mm case",
"Watch2,4": "Apple Watch Series 2 42mm case",
"Watch3,1": "Apple Watch Series 3 38mm case (GPS+Cellular)",
"Watch3,2": "Apple Watch Series 3 42mm case (GPS+Cellular)",
"Watch3,3": "Apple Watch Series 3 38mm case (GPS)",
"Watch3,4": "Apple Watch Series 3 42mm case (GPS)",
"Watch4,1": "Apple Watch Series 4 40mm case (GPS)",
"Watch4,2": "Apple Watch Series 4 44mm case (GPS)",
"Watch4,3": "Apple Watch Series 4 40mm case (GPS+Cellular)",
"Watch4,4": "Apple Watch Series 4 44mm case (GPS+Cellular)",
}
proximity_dev_models = {
'0220': 'AirPods',
'0320': 'Powerbeats3',
'0520': 'BeatsX',
'0620': 'Beats Solo3'
}
proximity_colors = {
'00': 'White',
'01': 'Black',
'02': 'Red',
'03': 'Blue',
'04': 'Pink',
'05': 'Gray',
'06': 'Silver',
'07': 'Gold',
'08': 'Rose Gold',
'09': 'Space Gray',
'0a': 'Dark Blue',
'0b': 'Light Blue',
'0c': 'Yellow',
}
homekit_category = {
'0000': 'Unknown',
'0100': 'Other',
'0200': 'Bridge',
'0300': 'Fan',
'0400': 'Garage Door Opener',
'0500': 'Lightbulb',
'0600': 'Door Lock',
'0700': 'Outlet',
'0800': 'Switch',
'0900': 'Thermostat',
'0a00': 'Sensor',
'0b00': 'Security System',
'0c00': 'Door',
'0d00': 'Window',
'0e00': 'Window Covering',
'0f00': 'Programmable Switch',
'1000': 'Range Extender',
'1100': 'IP Camera',
'1200': 'Video Doorbell',
'1300': 'Air Purifier',
'1400': 'Heater',
'1500': 'Air Conditioner',
'1600': 'Humidifier',
'1700': 'Dehumidifier',
'1c00': 'Sprinklers',
'1d00': 'Faucets',
'1e00': 'Shower Systems',
}
siri_dev = {'0002': 'iPhone',
'0003': 'iPad',
'0009': 'MacBook',
'000a': 'Watch',
}
magic_sw_wrist = {
'03': 'Not on wrist',
'1f': 'Wrist detection disabled',
'3f': 'On wrist',
}
hotspot_net = {
'01': '1xRTT',
'02': 'GPRS',
'03': 'EDGE',
'04': '3G (EV-DO)',
'05': '3G',
'06': '4G',
'07': 'LTE',
}
ble_packets_types = {
'airprint': '03',
'airdrop': '05',
'homekit': '06',
'airpods': '07',
'siri': '08',
'airplay': '09',
'nearby': '10',
'watch_c': '0b',
'handoff': '0c',
'wifi_set': '0d',
'hotspot': '0e',
'wifi_join': '0f',
}
if args.check_hash:
if not (hash2phone_url or path.isfile(hash2phone_db)):
print(
"You have to specify hash2phone_url or create phones.db if you want to match hashes to phones. See howto here: https://github.com/hexway/apple_bleee/tree/master/hash2phone")
exit(1)
if args.check_hlr:
if not hlr_key or hlr_pwd:
print("You have to specify hlr_key or hlr_pwd for HLR requests")
exit(1)
if args.check_region:
if not region_check_url:
print("You have to specify region_check_url for region requests")
exit(1)
if args.message:
if not imessage_url:
print("You have to specify iMessage_url if you want to send iMessages to the victim")
exit(1)
class App(npyscreen.StandardApp):
def onStart(self):
self.addForm("MAIN", MainForm, name="Apple devices scanner")
class MyGrid(npyscreen.GridColTitles):
def custom_print_cell(self, actual_cell, cell_display_value):
if 'Off' in cell_display_value or '<error>' in cell_display_value or 'iOS10' in cell_display_value or 'iOS11' in cell_display_value or 'Disabled' in cell_display_value:
actual_cell.color = 'DANGER'
elif 'Home screen' in cell_display_value or 'On' in cell_display_value or cell_display_value[0:3] in '\n'.join(
dev_types) or 'X' in cell_display_value or 'Calling' in cell_display_value or cell_display_value in airpods_states.values() or 'WatchOS' in cell_display_value or 'Watch' in cell_display_value or 'iOS13' in cell_display_value or 'Connecting' in cell_display_value or 'WiFi screen' in cell_display_value or 'Incoming' in cell_display_value or 'Outgoing' in cell_display_value or 'Siri' in cell_display_value or 'Idle' in cell_display_value:
actual_cell.color = 'GOOD'
elif 'Lock screen' in cell_display_value or 'iOS12' in cell_display_value:
actual_cell.color = 'CONTROL'
else:
actual_cell.color = 'DEFAULT'
class OutputBox(npyscreen.BoxTitle):
_contained_widget = npyscreen.MultiLineEdit
class VerbOutputBox(npyscreen.BoxTitle):
_contained_widget = npyscreen.MultiLineEdit
class MainForm(npyscreen.FormBaseNew):
def create(self):
new_handlers = {
"^Q": self.exit_func
}
self.add_handlers(new_handlers)
y, x = self.useable_space()
if args.airdrop:
self.gd = self.add(MyGrid, col_titles=titles, column_width=20, max_height=y // 2)
self.OutputBox = self.add(OutputBox, editable=False)
elif args.verb:
self.gd = self.add(MyGrid, col_titles=titles, column_width=20, max_height=y // 2)
self.VerbOutputBox = self.add(VerbOutputBox, editable=False, name=logFile)
else:
self.gd = self.add(MyGrid, col_titles=titles, column_width=20)
self.gd.values = []
self.gd.add_handlers({curses.ascii.NL: self.upd_cell})
def while_waiting(self):
self.gd.values = print_results()
if args.airdrop:
self.OutputBox.value = print_wifi_devs()
self.OutputBox.display()
if args.verb:
self.VerbOutputBox.value = pop_verb_messages()
self.VerbOutputBox.display()
if args.active:
self.get_all_dev_names()
def exit_func(self, _input):
disable_le_scan(sock)
print("Bye")
sys.exit()
def get_dev_name(self, mac_addr):
global resolved_devs
# self.get_all_dev_names()
dev_name = ''
kill = lambda process: process.kill()
cmd = ['gatttool', '-t', 'random', '--char-read', '--uuid=0x2a24', '-b', mac_addr]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
timer = Timer(3, kill, [proc])
try:
timer.start()
dev_name, stderr = proc.communicate()
finally:
timer.cancel()
if dev_name:
d_n_hex = dev_name.split(b"value:")[1].replace(b" ", b"").replace(b"\n", b"")
d_n_str = bytes.fromhex(d_n_hex.decode("utf-8")).decode('utf-8')
return_value = devices_models[d_n_str]
else:
return_value = ''
init_bluez()
resolved_devs.append(mac_addr)
if return_value:
# resolved_devs.append(mac_addr)
self.set_device_val_for_mac(mac_addr, return_value)
def get_all_dev_names(self):
global resolved_devs
for phone in phones:
# print (phones[phone])
if (phones[phone]['device'] == 'MacBook' or phones[phone][
'device'] == 'iPhone') and phone not in resolved_devs:
# print(f"checking {phone}")
self.get_dev_name(phone)
def get_mac_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][0]
def get_state_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][1]
def get_device_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][2]
def get_wifi_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][3]
def get_os_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][4]
def get_phone_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][5]
def get_time_val_from_cell(self):
return self.gd.values[self.gd.edit_cell[0]][6]
def set_mac_val_for_mac(self, mac, value):
global phones
phones[mac]['mac'] = value
def set_state_val_for_mac(self, mac, value):
global phones
phones[mac]['state'] = value
def set_device_val_for_mac(self, mac, value):
global phones
phones[mac]['device'] = value
def set_time_val_for_mac(self, mac, value):
global phones
phones[mac]['time'] = value
def get_cell_name(self):
return titles[self.gd.edit_cell[1]]
def upd_cell(self, argument):
global resolved_devs
cell = self.get_cell_name()
if cell == 'Device':
mac = self.get_mac_val_from_cell()
thread2 = Thread(target=self.get_dev_name, args=(mac,))
# thread2 = Thread(target=self.get_all_dev_names())
thread2.daemon = True
thread2.start()
if cell == 'Phone':
if self.get_phone_val_from_cell() == 'X':
hashinfo = "Phone hash={}, email hash={}, AppleID hash={}, SSID hash={} ({})".format(
hash2phone[self.get_mac_val_from_cell()]['ph_hash'],
hash2phone[self.get_mac_val_from_cell()]['email_hash'],
hash2phone[self.get_mac_val_from_cell()]['appleID_hash'],
hash2phone[self.get_mac_val_from_cell()]['SSID_hash'],
get_dict_val(dictOfss, hash2phone[self.get_mac_val_from_cell()]['SSID_hash']))
table = print_results2(hash2phone[self.get_mac_val_from_cell()]['phone_info'])
rez = "{}\n\n{}".format(hashinfo, table)
npyscreen.notify_confirm(rez, title="Phone number info", wrap=True, wide=True, editw=0)
def clear_zombies():
zombies = []
cur_time = int(time.time())
for k in list(phones):
if cur_time - phones[k]['time'] > args.ttl:
del phones[k]
if resolved_macs.count(k):
resolved_macs.remove(k)
if resolved_devs.count(k):
resolved_devs.remove(k)
if victims.count(k):
victims.remove(k)
def print_results():
rez_str = ''
clear_zombies()
row = []
for phone in phones:
row.append([phone, phones[phone]['state'], phones[phone]['device'], phones[phone]['wifi'], phones[phone]['os'],
phones[phone]['phone'], phones[phone]['time'], phones[phone]['notes']])
return row
def parse_struct(data, struct):
result = {}
i = 0
for key in struct:
if key == 999:
result[key] = data[i:]
else:
result[key] = data[i:i + struct[key] * 2]
i = i + struct[key] * 2
return result
def parse_os_wifi_code(code, dev):
if code == '1c':
if dev == 'MacBook':
return ('Mac OS', 'On')
else:
return ('iOS12', 'On')
elif code == '18':
if dev == 'MacBook':
return ('Mac OS', 'Off')
else:
return ('iOS12', 'Off')
elif code == '10':
return ('iOS11', '<unknown>')
elif code == '1e':
return ('iOS13', 'On')
elif code == '1a':
return ('iOS13', 'Off')
elif code == '0e':
return ('iOS13', 'Connecting')
elif code == '0c':
return ('iOS12', 'On')
elif code == '04':
return ('iOS13', 'On')
elif code == '00':
return ('iOS10', '<unknown>')
elif code == '09':
return ('Mac OS', '<unknown>')
elif code == '14':
return ('Mac OS', 'On')
elif code == '98':
return ('WatchOS', '<unknown>')
else:
return ('', '')
def parse_ble_packet(data):
parsed_data = {}
tag_len = 2
i = 0
while i < len(data):
tag = data[i:i + tag_len]
val_len = int(data[i + tag_len:i + tag_len + 2], 16)
value_start_position = i + tag_len + 2
value_end_position = i + tag_len + 2 + val_len * 2
parsed_data[tag] = data[value_start_position:value_end_position]
i = value_end_position
return parsed_data
def put_verb_message(msg, mac):
if args.verb:
action = msg[:msg.find(":")]
if action.lower() in args.verb.lower().split(",") or "all" in args.verb.lower():
f = open(logFile, 'a+')
f.write(f"{mac} {msg}\n")
f.close()
verb_messages.append(f"{mac} {msg}")
def parse_nearby(mac, header, data):
# 0 1 2 5
# +--------+--------+--------------------------------+
# | | | |
# | status | wifi | authTag |
# | | | |
# +--------+--------+--------------------------------+
nearby = {'status': 1,
'wifi': 1,
'authTag': 999}
result = parse_struct(data, nearby)
put_verb_message("Nearby:{}".format(json.dumps(result)), mac)
state = os_state = wifi_state = unkn = '<unknown>'
if args.verb:
state = os_state = wifi_state = unkn = '<unknown>({})'.format(result['status'])
if result['status'] in phone_states.keys():
state = phone_states[result['status']]
if args.verb:
state = '{}({})'.format(phone_states[result['status']], result['status'])
dev_val = unkn
for dev in dev_sig:
if dev in header:
dev_val = dev_sig[dev]
os_state, wifi_state = parse_os_wifi_code(result['wifi'], dev_val)
if args.verb:
wifi_state = '{}({})'.format(wifi_state, result['wifi'])
if os_state == 'WatchOS':
dev_val = 'Watch'
if mac in resolved_macs or mac in resolved_devs:
phones[mac]['state'] = state
phones[mac]['wifi'] = wifi_state
phones[mac]['os'] = os_state
phones[mac]['time'] = int(time.time())
if mac not in resolved_devs:
phones[mac]['device'] = dev_val
else:
phones[mac] = {'state': unkn, 'device': unkn, 'wifi': unkn, 'os': unkn, 'phone': '', 'time': int(time.time()),
'notes': ''}
phones[mac]['device'] = dev_val
resolved_macs.append(mac)
def parse_nandoff(mac, data):
# 0 1 3 4 14
# +-------+----------+-------+-----------------------------------+
# | | | | |
# | Clbrd | seq.nmbr | Auth | Encrypted payload |
# | | | | |
# +-------+----------+-------+-----------------------------------+
handoff = {'clipboard': 1,
's_nbr': 2,
'authTag': 1,
'encryptedData': 10}
result = parse_struct(data, handoff)
put_verb_message("Handoff:{}".format(json.dumps(result)), mac)
notes = f"Clbrd:True" if result['clipboard'] == '08' else ''
if mac in resolved_macs:
phones[mac]['time'] = int(time.time())
phones[mac]['notes'] = notes
else:
phones[mac] = {'state': 'Idle', 'device': 'AppleWatch', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
def parse_watch_c(mac, data):
# 0 2 3
# +----------+-------+
# | | |
# | Data | Wrist |
# | | |
# +----------+-------+
magic_switch = {'data': 2,
'wrist': 1
}
result = parse_struct(data, magic_switch)
put_verb_message("MagicSwitch:{}".format(json.dumps(result)), mac)
notes = f"{magic_sw_wrist[result['wrist']]}"
if mac in resolved_macs:
phones[mac]['state'] = 'MagicSwitch'
phones[mac]['time'] = int(time.time())
phones[mac]['notes'] = notes
else:
phones[mac] = {'state': 'MagicSwitch', 'device': 'AppleWatch', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
def parse_wifi_set(mac, data):
# 0 4
# +-----------------------------------------+
# | |
# | iCloud ID |
# | |
# +-----------------------------------------+
wifi_set = {'icloudID': 4}
result = parse_struct(data, wifi_set)
put_verb_message("WiFi settings:{}".format(json.dumps(result)), mac)
unkn = '<unknown>'
if mac in resolved_macs or mac in resolved_devs:
phones[mac]['state'] = 'WiFi screen'
else:
phones[mac] = {'state': unkn, 'device': unkn, 'wifi': unkn, 'os': unkn, 'phone': '', 'time': int(time.time())}
resolved_macs.append(mac)
def parse_hotspot(mac, data):
# 0 1 2 4 5 6
# +-------+-------+-----------+-------+-------+
# | | | | Net | Sig |
# | Ver | Flags | Bat. lvl | type | str |
# | | | | | |
# +-------+-------+-----------+-------+--------
hotspot = {'version': 1,
'flags': 1,
'battery': 2,
'cell_srv': 1,
'cell_bars': 1
}
result = parse_struct(data, hotspot)
put_verb_message("Hotspot:{}".format(json.dumps(result)), mac)
notes = hotspot_net[result['cell_srv']]
if mac in resolved_macs or mac in resolved_devs:
phones[mac]['state'] = '{}.Bat:{}%'.format(phones[mac]['state'], int(result['battery'], 16))
phones[mac]['notes'] = notes
else:
phones[mac] = {'state': 'MagicSwitch', 'device': 'AppleWatch', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
def parse_wifi_j(mac, data):
# 0 1 2 5 8 12 15 18
# +--------+-------+------------------------+-------------------------+-----------------------+----------------------+----------------------+
# | | | | | | | |
# | flags | type | auth tag | sha(appleID) | sha(phone_nbr) | sha(email) | sha(SSID) |
# | | (0x08)| | | | | |
# +--------+--------------------------------+-------------------------+-----------------------+----------------------+----------------------+
wifi_j = {'flags': 1,
'type': 1,
'tag': 3,
'appleID_hash': 3,
'phone_hash': 3,
'email_hash': 3,
'ssid_hash': 3}
result = parse_struct(data, wifi_j)
put_verb_message("WiFi join:{}".format(json.dumps(result)), mac)
notes = f"phone:{result['phone_hash']}"
global phone_number_info
unkn = '<unknown>'
if mac not in victims and result["type"] == "08":
victims.append(mac)
if args.check_hash:
if hash2phone_url:
get_phone_web(result['phone_hash'])
else:
get_phone_db(result['phone_hash'])
if args.check_phone:
get_names(True)
if args.check_hlr:
thread3 = Thread(target=get_hlr_info, args=(mac,))
thread3.daemon = True
thread3.start()
if args.check_region:
thread4 = Thread(target=get_regions(), args=())
thread4.daemon = True
thread4.start()
if args.message:
thread4 = Thread(target=sendToTheVictims, args=(result['ssid_hash'],))
thread4.daemon = True
thread4.start()
if resolved_macs.count(mac):
phones[mac]['time'] = int(time.time())
phones[mac]['phone'] = 'X'
phones[mac]['notes'] = notes
hash2phone[mac] = {'ph_hash': result['phone_hash'], 'email_hash': result['email_hash'],
'appleID_hash': result['appleID_hash'], 'SSID_hash': result['ssid_hash'],
'phone_info': phone_number_info}
else:
phones[mac] = {'state': unkn, 'device': unkn, 'wifi': unkn, 'os': unkn, 'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
phones[mac]['time'] = int(time.time())
phones[mac]['phone'] = 'X'
hash2phone[mac] = {'ph_hash': result['phone_hash'], 'email_hash': result['email_hash'],
'appleID_hash': result['appleID_hash'], 'SSID_hash': result['ssid_hash'],
'phone_info': phone_number_info}
else:
phones[mac]['time'] = int(time.time())
def parse_airpods(mac, data):
# 0 1 3 4 5 6 7 8 9 25
# +-------+----------------+--------+-------+-------+-------+-------+-------+---------------------------------+
# | | Device | | | | Lid | Dev | | |
# | 0x01 | model | UTP | Bat1 | Bat2 | open | color| 0x00 | encrypted payload |
# | | | | | | cntr | | | |
# +-------+----------------+--------+-------+-------+-------+-------+-------+---------------------------------+
airpods = {'fix1': 1,
'model': 2,
'utp': 1,
'battery1': 1,
'battery2': 1,
'lid_counter': 1,
'color': 1,
'fix2': 1,
'encr_data': 16}
result = parse_struct(data, airpods)
put_verb_message("AirPods:{}".format(json.dumps(result)), mac)
state = unkn = '<unknown>'
bat1 = "{:08b}".format(int(result['battery1'], base=16))
bat2 = "{:08b}".format(int(result['battery2'], base=16))
bat_left = int(bat1[:4], 2) * 10
bat_right = int(bat1[4:], 2) * 10
color = '{}'.format(proximity_colors[result['color']])
bat_level = 'L:{}% R:{}%'.format(bat_left, bat_right)
notes = f'{bat_level} {color}'
if result['utp'] in airpods_states.keys():
state = airpods_states[result['utp']]
else:
state = unkn
if result['battery1'] == '09':
state = 'Case:Closed'
if mac in resolved_macs:
phones[mac]['state'] = state
phones[mac]['time'] = int(time.time())
phones[mac]['notes'] = notes
else:
phones[mac] = {'state': state, 'device': proximity_dev_models[result['model']], 'wifi': '', 'os': '',
'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
def parse_airdrop_r(mac, data):
# 0 8 9 11 13 15 17 18
# +-----------------------------------------+--------+----------------+---------------------+-------------------+------------------+--------+
# | | | | | | | |
# | zeros |st(0x01)| sha(AppleID) | sha(phone) | sha(email) | sha(email2) | zero |
# | | | | | | | |
# +-----------------------------------------+--------+----------------+---------------------+-------------------+------------------+--------+
airdrop_r = {'zeros': 8,
'st': 1,
'appleID_hash': 2,
'phone_hash': 2,
'email_hash': 2,
'email2_hash': 2,
'zero': 1}
result = parse_struct(data, airdrop_r)
put_verb_message("AirDrop:{}".format(json.dumps(result)), mac)
notes = f"phone:{result['phone_hash']}"
if mac in resolved_macs:
phones[mac]['state'] = 'AirDrop'
phones[mac]['time'] = int(time.time())
phones[mac]['notes'] = notes
else:
phones[mac] = {'state': 'AirDrop', 'device': '', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': notes}
resolved_macs.append(mac)
def parse_airprint(mac, data):
# 0 1 2 3 5 21 22
# +-------+-------+-------+-----------+-----------------------------------------+---------+
# | Addr | Res | Sec | QID or | | |
# | Type | path | Type | TCP port| IPv4 or IPv6 Address | Power |
# | | type | | | | |
# +-------+-------+-------+-----------+-----------------------------------------+---------+
airpirnt = {'addrType': 1,
'resPathType': 1,
'secType': 1,
'port': 2,
'IP': 16,
'power': 1}
result = parse_struct(data, airpirnt)
put_verb_message("AirPrint:{}".format(json.dumps(result)), mac)
if mac in resolved_macs:
phones[mac]['state'] = 'AirPrint'
phones[mac]['time'] = int(time.time())
else:
phones[mac] = {'state': 'AirPrint', 'device': '', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': ''}
resolved_macs.append(mac)
def parse_airplay(mac, data):
# 0 1 2 6
# +-------+------------------------+
# | | Config| |
# | Flags | seed | IPv4 |
# | | | |
# +-------+-------+----------------+
airplay = {'flags': 1,
'configSeeds': 1,
'ipV4': 4
}
result = parse_struct(data, airplay)
put_verb_message("AirPlay:{}".format(json.dumps(result)), mac)
if mac in resolved_macs:
phones[mac]['state'] = 'AirPlay'
phones[mac]['time'] = int(time.time())
else:
phones[mac] = {'state': 'AirPlay', 'device': '', 'wifi': '', 'os': '', 'phone': '',
'time': int(time.time()), 'notes': ''}
resolved_macs.append(mac)
def parse_homekit(mac, data):
# 0 1 7 9 11 12 13
# +------------------------+--------------------------+-------+-------+
# | Status| | |Global State | Conf | Comp |
# | flag | Device ID | Categoty | number | nmbr | ver |
# | | | | | | |
# +-------+----------------+------------+-------------+-------+-------+
homekit = {'statusFlag': 1,
'devID': 6,
'category': 2,
'globalStateNumber': 2,
'configurationNumber': 1,
'compatibleVersion': 1
}
result = parse_struct(data, homekit)
put_verb_message("Homekit:{}".format(json.dumps(result)), mac)
notes = homekit_category[result['category']]
if mac in resolved_macs:
phones[mac]['state'] = 'Homekit'