Skip to content

Commit

Permalink
Update meraki-bssid-dump.py (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
shantarsecurity committed Aug 6, 2023
1 parent 29cce4d commit 95f9905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meraki-bssid-dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#loop through devices
for device in dash.networks.getNetworkDevices(net['id']):
#check if device is an AP
if 'MR' in device.get('model', ''):
if 'MR' in device.get('model', '') or 'CW' in device.get('model', ''):
print(f" Processing AP device: {device['serial']}...")
#get BSSID list
status = dash.wireless.getDeviceWirelessStatus(device['serial'])
Expand Down

0 comments on commit 95f9905

Please sign in to comment.