-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathreport_bssids.py
285 lines (237 loc) · 9.99 KB
/
report_bssids.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
'''
-------------------------------------------------------------------------------
Written by Thomas Munzer ([email protected])
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
Python script to list all Access Points from orgs/sites and their associated BSSIDs,
and save it to a CSV file. You can configure which fields you want to retrieve/save,
and where the script will save the CSV file.
-------
Requirements:
mistapi: https://pypi.org/project/mistapi/
-------
Usage:
This script can be run as is (without parameters), or with the options below.
If no options are defined, or if options are missing, the missing options will
be asked by the script or the default values will be used.
It is recommended to use an environment file to store the required information
to request the Mist Cloud (see https://pypi.org/project/mistapi/ for more
information about the available parameters).
-------
Options:
-h, --help display this help
-o, --org_id= Set the org_id (only one of the org_id or site_id can be defined)
-s, --site_ids= list of sites to use, comma separated
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-e, --env= define the env file to use (see mistapi env file documentation
here: https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-------
Examples:
python3 ./report_bssids.py
python3 ./report_bssids.py --org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
'''
#### IMPORTS #####
import sys
import logging
import getopt
MISTAPI_MIN_VERSION = "0.44.1"
try:
import mistapi
from mistapi.__logger import console
except:
print("""
Critical:
\"mistapi\" package is missing. Please use the pip command to install it.
# Linux/macOS
python3 -m pip install mistapi
# Windows
py -m pip install mistapi
""")
sys.exit(2)
#### PARAMETERS #####
csv_separator = ","
fields = ["map_id", "id", "name", "ip", "model", "radio_stat.band_24.mac", "radio_stat.band_5.mac" , "radio_stat.band_6.mac" ]
csv_file = "./report_bssids.csv"
org_ids = []
site_ids = []
log_file = "./script.log"
env_file = "~/.mist_env"
#### GLOBAL VARIABLES ####
bssid_list = []
#### LOGS ####
logger = logging.getLogger(__name__)
out=sys.stdout
###############################################################################
### PROGRESS BAR
def _progress_bar_update(count:int, total:int, size:int):
if total == 0:
return
if count > total:
count = total
x = int(size*count/total)
out.write(f"Progress: ".ljust(10))
out.write(f"[{'█'*x}{'.'*(size-x)}]")
out.write(f"{count}/{total}\r".rjust(79 - size - 10))
out.flush()
def _progress_bar_end(total:int, size:int):
if total == 0:
return
_progress_bar_update(total, total, size)
out.write("\n")
out.flush()
###############################################################################
#### FUNCTIONS ####
def extract_field(json_data, field):
split_field = field.split(".")
cur_field = split_field[0]
next_fields = ".".join(split_field[1:])
if cur_field in json_data:
if len(split_field) > 1:
return extract_field(json_data[cur_field], next_fields)
else:
return json_data[cur_field]
else:
return "N/A"
def bssids_from_sites(mist_session, sites, site_ids):
i = 0
_progress_bar_update(i, len(sites), 55)
for site in sites:
if len(org_ids) > 1 or site["id"] in site_ids:
response = mistapi.api.v1.sites.stats.listSiteDevicesStats(mist_session, site["id"], limit=1000)
devices = response.data
while response.next:
response = mistapi.get_next(mist_session, response)
devices += response.data
for site_device in devices:
device_stat = []
device_stat.append(site["id"])
device_stat.append(site["name"])
for field in fields:
field_data = extract_field(site_device, field)
if (field == "radio_stat.band_24.mac" or field == "radio_stat.band_5.mac" or field == "radio_stat.band_6.mac") and not field_data == "N/A":
mac_start = field_data
mac_end = field_data[:-1] + "f"
device_stat.append("%s to %s" %(mac_start, mac_end))
else:
device_stat.append(field_data)
bssid_list.append(device_stat)
i+=1
_progress_bar_update(i, len(sites), 55)
_progress_bar_end(len(sites), 55)
def bssids_from_orgs(mist_session, org_id, site_ids):
org_sites = [privilege for privilege in mist_session.privileges if privilege.get("org_id") == org_id]
# the admin only has access to the org information if he/she has this privilege
if len(org_sites) >= 1 and org_sites[0]["scope"] == "org":
org_sites = mistapi.api.v1.orgs.sites.listOrgSites(mist_session, org_id).data
bssids_from_sites(mist_session, org_sites, site_ids)
# if the admin doesn't have access to the org level, but only the sites
elif len(org_sites) >= 1:
org_sites = []
# get the sites information
for site_id in site_ids:
org_sites.append(mistapi.api.v1.sites.sites.getSiteInfo(mist_session, site_id).data)
bssids_from_sites(mist_session, org_sites, site_ids)
###############################################################################
### USAGE
def usage():
print('''
-------------------------------------------------------------------------------
Written by Thomas Munzer ([email protected])
Github repository: https://github.com/tmunzer/Mist_library/
This script is licensed under the MIT License.
-------------------------------------------------------------------------------
Python script to list all Access Points from orgs/sites and their associated BSSIDs,
and save it to a CSV file. You can configure which fields you want to retrieve/save,
and where the script will save the CSV file.
-------
Requirements:
mistapi: https://pypi.org/project/mistapi/
-------
Usage:
This script can be run as is (without parameters), or with the options below.
If no options are defined, or if options are missing, the missing options will
be asked by the script or the default values will be used.
It is recommended to use an environment file to store the required information
to request the Mist Cloud (see https://pypi.org/project/mistapi/ for more
information about the available parameters).
-------
Options:
-h, --help display this help
-o, --org_id= Set the org_id (only one of the org_id or site_id can be defined)
-s, --site_ids= list of sites to use, comma separated
-l, --log_file= define the filepath/filename where to write the logs
default is "./script.log"
-e, --env= define the env file to use (see mistapi env file documentation
here: https://pypi.org/project/mistapi/)
default is "~/.mist_env"
-------
Examples:
python3 ./report_bssids.py
python3 ./report_bssids.py --org_id=203d3d02-xxxx-xxxx-xxxx-76896a3330f4
''')
sys.exit(0)
def check_mistapi_version():
if mistapi.__version__ < MISTAPI_MIN_VERSION:
logger.critical(f"\"mistapi\" package version {MISTAPI_MIN_VERSION} is required, you are currently using version {mistapi.__version__}.")
logger.critical(f"Please use the pip command to updated it.")
logger.critical("")
logger.critical(f" # Linux/macOS")
logger.critical(f" python3 -m pip install --upgrade mistapi")
logger.critical("")
logger.critical(f" # Windows")
logger.critical(f" py -m pip install --upgrade mistapi")
print(f"""
Critical:
\"mistapi\" package version {MISTAPI_MIN_VERSION} is required, you are currently using version {mistapi.__version__}.
Please use the pip command to updated it.
# Linux/macOS
python3 -m pip install --upgrade mistapi
# Windows
py -m pip install --upgrade mistapi
""")
sys.exit(2)
else:
logger.info(f"\"mistapi\" package version {MISTAPI_MIN_VERSION} is required, you are currently using version {mistapi.__version__}.")
###############################################################################
### ENTRY POINT
if __name__ == "__main__":
try:
opts, args = getopt.getopt(sys.argv[1:], "ho:s:e:l:", ["help", "org_id=", "site_ids=", "env=", "log_file="])
except getopt.GetoptError as err:
console.error(err)
usage()
org_id=None
site_ids=None
for o, a in opts:
if o in ["-h", "--help"]:
usage()
elif o in ["-o", "--org_id"]:
org_id = a
elif o in ["-s", "--site_ids"]:
site_ids = a.split(",")
elif o in ["-e", "--env"]:
env_file=a
elif o in ["-l", "--log_file"]:
log_file = a
else:
assert False, "unhandled option"
#### LOGS ####
logging.basicConfig(filename=log_file, filemode='w')
logger.setLevel(logging.DEBUG)
check_mistapi_version()
### MIST SESSION ###
apisession = mistapi.APISession(env_file=env_file)
apisession.login()
if not org_id:
org_id = mistapi.cli.select_org(apisession)
site_ids = mistapi.cli.select_site(apisession, org_id=org_id, allow_many=True)
if not site_ids:
site_ids = mistapi.cli.select_site(apisession, org_id=org_id, allow_many=True)
bssids_from_orgs(apisession, org_id, site_ids)
fields.insert(0, "site_id")
fields.insert(1, "site_name")
mistapi.cli.pretty_print(bssid_list, fields)
mistapi.cli.save_to_csv(csv_file, bssid_list, fields, csv_separator)