remove duplicate and invalid passwords

This commit is contained in:
netcon 2018-12-07 18:42:52 +08:00
parent 3cd4fcb435
commit 01392a3601
8 changed files with 727851 additions and 762 deletions

View File

@ -132,7 +132,7 @@ netcon@conwlt:~$ sudo aireplay-ng -0 0 -a 22:47:DA:62:2A:F0 -c AC:BC:32:96:31:8D
使用命令:`aircrack-ng -w 密码字典 <包含握手包的 cap 文件>`
~~~
netcon@conwlt:~/workspace$ aircrack-ng -w wpa-dictionary/huanying-0.txt android-01.cap
netcon@conwlt:~/workspace$ aircrack-ng -w wpa-dictionary/common.txt android-01.cap
Opening android-01.cap
Read 675 packets.
@ -237,7 +237,7 @@ brew install aircrack-ng
### 5. 使用 aircrack-ng 执行破解
~~~shell
aircrack-ng -w huanying-0.txt /tmp/airportSniff0RjCAO.cap
aircrack-ng -w common.txt /tmp/airportSniff0RjCAO.cap
~~~
### Windows

File diff suppressed because it is too large Load Diff

View File

@ -557,7 +557,6 @@ woshishen
wangliang
howareyou
a7758521
bugaosuni
12356789
9638527410
13141516

672046
english.txt Normal file

File diff suppressed because it is too large Load Diff

11
normalize.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
import sys
results = set([])
for line in sys.stdin:
if len(line) >= 8 and line not in results:
results.add(line)
print(line, end='')

File diff suppressed because it is too large Load Diff