-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathble_guuide.py
86 lines (78 loc) · 2.88 KB
/
ble_guuide.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
import os
import sys
import json
import argparse
class BleFunctionMapper:
def __init__(self):
self.base_dir = os.path.dirname(os.path.abspath(__file__))
self.src_dir = os.path.abspath(os.path.join(
self.base_dir,
'src'
))
self.io_dir = os.path.abspath(os.path.join(
self.base_dir,
'input_output'
))
self.analyser_dir = os.path.abspath(os.path.join(
self.src_dir,
'analyser'
))
self.fmap_dir = os.path.abspath(os.path.join(
self.src_dir,
'functionality_mapper'
))
self.bool_stats_gather = False
self.bool_map_functionality = False
self.argparser = None
self.fn_set_args()
self.fn_get_user_args()
def fn_set_args(self):
self.argparser = argparse.ArgumentParser(
description = 'A tool for performing functionality mapping'
+ ' for BLE UUIDs.',
epilog = 'Note that this tool has only been '
+ 'tested with Python 3.8.0. '
+ 'Some functionality will likely not work with '
+ 'versions less than 3.4.\n'
)
self.argparser.add_argument(
'-s',
'--stats',
action='store_true',
default = False,
help = 'perform statistical analysis '
+ 'over extracted UUIDs. '
+ 'Results will be printed to console.'
)
self.argparser.add_argument(
'-m',
'--map',
action='store_true',
default = False,
help = 'perform functionality mapping '
+ 'over extracted UUIDs. '
+ 'Results will be saved to JSON.'
)
def fn_get_user_args(self):
args = self.argparser.parse_args()
if args.stats:
self.bool_stats_gather = args.stats
if args.map:
self.bool_map_functionality = args.map
def fn_main(self):
if self.bool_stats_gather == True:
sys.path.append(os.path.abspath(self.analyser_dir))
from analyser import UUIDStatsAnalyser
stats_analyser = UUIDStatsAnalyser(self.base_dir)
stats_analyser.fn_get_stats()
if self.bool_map_functionality == True:
sys.path.append(os.path.abspath(self.fmap_dir))
from apk_matcher import ApkMatcher
apk_matcher = ApkMatcher(self.base_dir)
apk_output = apk_matcher.fn_get_functionality()
apkoutfile = os.path.join(self.io_dir, 'apk_matcher_output.json')
with open(apkoutfile, 'w') as f:
json.dump(apk_output, f, indent=4)
if __name__ == '__main__':
ble_function_mapper = BleFunctionMapper()
ble_function_mapper.fn_main()