https://github.com/juanbindez/wifitest
Python 3 library for wifi testing.
https://github.com/juanbindez/wifitest
wifi wifi-hacking wifi-network wifi-password wifi-security
Last synced: 6 months ago
JSON representation
Python 3 library for wifi testing.
- Host: GitHub
- URL: https://github.com/juanbindez/wifitest
- Owner: JuanBindez
- License: gpl-2.0
- Created: 2024-04-20T23:19:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-20T01:55:46.000Z (over 1 year ago)
- Last Synced: 2025-04-21T06:28:36.093Z (6 months ago)
- Topics: wifi, wifi-hacking, wifi-network, wifi-password, wifi-security
- Language: Python
- Homepage: http://wifitest.readthedocs.io/
- Size: 50.8 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wifitest



## Python 3 library for wifi testing.
### Install
sudo pip install wifitest
### usage:
#### import
```python
from wifitest import WifiTest
```
#### scan available wifi networks```python
s = WifiTest()
s.scan()
```
#### bruteforce on wifi network```python
SSID = "wifi"
WORDLIST = "wordlist.txt"wifi = WifiTest()
wifi.bruteforce(SSID, WORDLIST)```
### CLI
```bash
usage: wifitest [-h] [--ssid SSID] [--wordlist WORDLIST] {scan,bruteforce,events}Wifitest CLI
positional arguments:
{scan,bruteforce,events}
Operation to perform: scan, bruteforce, or eventsoptions:
-h, --help show this help message and exit
--ssid SSID SSID of the target Wi-Fi network (required for bruteforce
operation)
--wordlist WORDLIST Path to the wordlist file (required for bruteforce operation)
```### Bruteforce
sudo wifitest bruteforce --ssid WIFINAME --wordlist wordlist.txt
### Scan
sudo wifitest scan
### Events
sudo wifitest events