# this is part of the wifitest project.
#
# Copyright © 2024 Juan Bindez <juanbindez780@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from wifitest.bruteforce import BruteForce
from wifitest.events import WifiEvents
from wifitest.scan import WifiScan
[docs]
class WifiTest:
"""
Class to perform tests related to Wi-Fi networks, such as scanning, brute-forcing, and event monitoring.
"""
[docs]
def scan(self):
"""
Performs a scan of available Wi-Fi networks and prints their details.
"""
wifi_scan = WifiScan()
print("Scanning for Wi-Fi networks...")
print("Wi-Fi networks found:")
networks = wifi_scan.scan_wifi_networks()
wifi_scan.print_wifi_details(networks)
[docs]
def bruteforce(self, ssid: str, wordlist: str):
"""
Performs a brute-force attack on a specified Wi-Fi network using a wordlist.
Args:
ssid (str): The SSID of the target Wi-Fi network.
wordlist (str): The path to the wordlist file.
"""
bf = BruteForce()
bf.brute_force_attack(ssid, wordlist)
[docs]
def events(self):
"""
Initiates monitoring of events related to Wi-Fi networks, such as connection and disconnection.
"""
events = WifiEvents()
events.monitor_wifi_events()