A tool for tracking and analyzing the presence of devices in the launchpad.
sudo python client
- Start detecting Wi-Fi traffic of nearby devices and networks.
- Devices are filtered by the network they are active in and their mac addresses.
- After a specified interval:
- The
sha-256
hashes of the filtered active device mac addresses are send to the server. - All information is wiped.
- The
- The next interval starts.
Make sure to install the Aircrack-ng suite and have a compatible WLAN adapter. For help to determine if your adapter is compatible click here.
We are using TP-Link TL-WN722N.
pip install -r requirements.txt
Edit the client/config.default.py
script and save it as client/config.py
. Configureable values are:
api_url = "https://api.example.com/v1"
api_secret = ""
bssid_filter = lambda bssid: True
mac_filter = lambda mac: True
interval = datetime.timedelta(minutes=30)
salt = ""
interface = "wlan0"
```