From 654fd3106e223fb141456663a00b22d344cb6531 Mon Sep 17 00:00:00 2001 From: strasharo Date: Sun, 29 Dec 2019 00:18:30 +0200 Subject: [PATCH] Fixed aircrack-ng verification and screen not clearing on deauth select. --- attacks/Captive Portal/attack.sh | 2 ++ fluxion.sh | 2 +- lib/HashUtils.sh | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/attacks/Captive Portal/attack.sh b/attacks/Captive Portal/attack.sh index 5789fe1..abcb26f 100755 --- a/attacks/Captive Portal/attack.sh +++ b/attacks/Captive Portal/attack.sh @@ -154,6 +154,8 @@ function captive_portal_set_ap_service() { captive_portal_unset_ap_service +fluxion_header + echo -e "$FLUXIONVLine ${CClr}Select a method of deauthentication\n${CClr}" echo -e "${CSRed}[${CSYel}1${CSRed}]${CClr} mdk4${CClr}" echo -e "${CSRed}[${CSYel}2${CSRed}]${CClr} aireplay${CClr}" diff --git a/fluxion.sh b/fluxion.sh index d81bc13..33cb4f8 100755 --- a/fluxion.sh +++ b/fluxion.sh @@ -26,7 +26,7 @@ readonly FLUXIONNoiseFloor=-90 readonly FLUXIONNoiseCeiling=-60 readonly FLUXIONVersion=6 -readonly FLUXIONRevision=2 +readonly FLUXIONRevision=3 # Declare window ration bigger = smaller windows FLUXIONWindowRatio=4 diff --git a/lib/HashUtils.sh b/lib/HashUtils.sh index a5e94f8..f10782e 100755 --- a/lib/HashUtils.sh +++ b/lib/HashUtils.sh @@ -74,7 +74,7 @@ function hash_check_handshake() { fi ;; "aircrack-ng") - if echo "$hashData" | grep -qE "\([0-9]+ handshake\)"; then + if echo "$hashData" | grep -qE "\(1 handshake\)"; then local -r hashResult=1 fi ;;