wifitest

Python 3 library for wifi testing.


Keywords
bruteforce, wifi, tools, cli, scan, wifi-hacking, wifi-network, wifi-password, wifi-security
License
xpp
Install
pip install wifitest==0.1.8

Documentation

wifitest

PyPI - Downloads PyPI - License Read the Docs GitHub Tag

Python 3 library for wifi testing.

Install

sudo pip install wifitest

usage:

import

from wifitest import WifiTest

scan available wifi networks

s = WifiTest()
s.scan()

bruteforce on wifi network

SSID = "wifi"
WORDLIST = "wordlist.txt"

wifi = WifiTest()
wifi.bruteforce(SSID, WORDLIST)