Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 days 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T01:55:46.000Z (5 months ago)
- Last Synced: 2024-10-08T15:39:13.559Z (about 1 month ago)
- Topics: wifi, wifi-hacking, wifi-network, wifi-password, wifi-security
- Language: Python
- Homepage: http://wifitest.readthedocs.io/
- Size: 50.8 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wifitest
![PyPI - Downloads](https://img.shields.io/pypi/dm/wifitest)
![PyPI - License](https://img.shields.io/pypi/l/wifitest)
![Read the Docs](https://img.shields.io/readthedocs/wifitest)
![GitHub Tag](https://img.shields.io/github/v/tag/JuanBindez/wifitest?include_prereleases)## 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