-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwifi-scan.py
35 lines (25 loc) · 915 Bytes
/
wifi-scan.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
import objc
import argparse
from pprint import pprint
parse = argparse.ArgumentParser("Hello, I'm wifi scanner for mac-os-x")
parse.add_argument("--filter", '-f', help="Looking for any specific network?", default=None)
args = parse.parse_args()
filter_ssid = args.filter
def scan(concrete_ssid=None):
bundle_path = '/System/Library/Frameworks/CoreWLAN.framework'
objc.loadBundle('CoreWLAN',
bundle_path=bundle_path,
module_globals=globals())
iface = CWInterface.interface()
networks = iface.scanForNetworksWithName_includeHidden_error_(concrete_ssid, True, None)
return {
i.ssid(): {
'RSSI': i.rssiValue(),
'BSSID': i.bssid()
}
for i in networks[0].allObjects() if i.ssid() is not None
}
result = scan(filter_ssid)
if result is None:
print("Sorry, couldn't find that SSID")
pprint(result)