13 lines
605 B
Bash
13 lines
605 B
Bash
|
#!/bin/bash
|
||
|
# identifier: Handshake Snopper
|
||
|
# description: Retrieves WPA/WPA2 encryption hashes.
|
||
|
|
||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||
|
HandshakeSnooperMethodQuery="Select a method of handshake retrieval"
|
||
|
HandshakeSnooperMonitorMethodOption="Monitor (${CYel}passive$CClr)"
|
||
|
HandshakeSnooperAireplayMethodOption="aireplay-ng deauthentication (${CRed}aggressive$CClr)"
|
||
|
HandshakeSnooperMdk3MethodOption="mdk3 deauthentication (${CRed}aggressive, not recommended$CClr)"
|
||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||
|
|
||
|
# FLUXSCRIPT END
|