使用Python破解存储在电脑上的WIFI密码
大家可能有过这样的经历,WIFI密码使用久了,自己反而忘了,那么,可以采用以下Python编程方法去破解,非常简单实用!
具体代码如下:
import os,re,sys
a=os.popen('netsh wlan show profiles')
b=a.read()
c=re.findall('所有用户配置文件 : (.*?)\n',b,re.S)
for i in c:
a=os.popen('netsh wlan show profiles '+i+' key=clear')
b=a.read()
c=re.findall('关键内容 : (.*?)\n\n费用设置',b,re.S)
for j in c:
e=open('Wifi_pass.txt','a+')
e.write(i+' : '+j+'\n')
e.close()
with open('Wifi_pass.txt') as f:
content = f.read()
print(content)
f.close()