-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2056b6
commit 140a237
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# WiFi密码破解工具 | ||
|
||
## 介绍 | ||
|
||
基于Python开发的拥有图形界面的WiFi密码破解工具 | ||
|
||
## 开发环境 | ||
|
||
Windows 10 | ||
|
||
Python 3.6.5 | ||
|
||
## 核心模块 | ||
|
||
pywifi | ||
|
||
## 系统要求 | ||
|
||
Windows 10 | ||
|
||
非 Windows 10 系统请自行下载源码编译 | ||
|
||
## 编译方法 | ||
|
||
1. 下载 Python 3.6.5 并安装 | ||
|
||
2. 安装所需模块 | ||
|
||
```cmd | ||
pip install pywifi | ||
pip install pyinstaller | ||
``` | ||
|
||
3. 编译 WifiCrackTool.py | ||
|
||
```cmd | ||
pyinstaller -F -w WifiCrackTool.py | ||
``` | ||
|
||
## 更新日志 | ||
|
||
### v1.0 | ||
|
||
- [修复]WiFi中文名称乱码,无法正常破解的问题。 | ||
- [新增]日志输出、破解成功后自动将密码复制到剪切板。 | ||
- [优化]部分功能 |