13 lines
623 B
Bash
13 lines
623 B
Bash
|
#!/bin/bash
|
||
|
# identifier: Handshake Snopper
|
||
|
# description: Retrieves WPA/WPA2 encryption hashes.
|
||
|
|
||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||
|
HandshakeSnooperMethodQuery="选择一种方式来检查握手包获取状态"
|
||
|
HandshakeSnooperMonitorMethodOption="监听模式 (${CYel}被动$CClr)"
|
||
|
HandshakeSnooperAireplayMethodOption="aireplay-ng 解除认证方式 (${CRed}侵略性$CClr)"
|
||
|
HandshakeSnooperMdk3MethodOption="mdk3 解除认证方式 (${CRed}侵略性,不推荐用这个$CClr)"
|
||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||
|
|
||
|
# FLUXSCRIPT END
|