Skip to content

Python script with one simple purpose: to get all or any detailed informations about wifi networks on mac OS. I've written this tool as there is no iwlist scanner installed natively on mac OS.

License

Notifications You must be signed in to change notification settings

pkruk/osx-wifi-scanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mac OS Wifi Scanner

There is no iwlist on Mac OS, that is why I've created my own script to get all SSID around me via cli ;)

Prerequisites:

Before running anything, check out the requirements.txt and make sure you have everything neccessary to run this script installed. To install all needed requirements:

pip install -r requirements.txt

Then run a script:

python3 wifi-scan

Example:

How to use it:

python3 wifi-scan.py

{'SOME WIFI': {'BSSID': '11:11:11:11:11:11', 'RSSI': -45},
 'ANOTHER_WIFI': {'BSSID': '11:11:11:11:11:11', 'RSSI': -57}}

Wifi-scan.py support filter argument, which can be used to find any particular SSID.

python3 wifi-scan.py -f SOME_WIFI

{'SOME WIFI': {'BSSID': '11:11:11:11:11:11', 'RSSI': -45}

About

Python script with one simple purpose: to get all or any detailed informations about wifi networks on mac OS. I've written this tool as there is no iwlist scanner installed natively on mac OS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages