13 lines
604 B
Bash
Executable File
13 lines
604 B
Bash
Executable File
#!/bin/bash
|
|
# identifier: Handshake Snopper
|
|
# description: Acquires 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
|