From 2bb7d3bed2fb67446770ec5379315c6c5ab51da3 Mon Sep 17 00:00:00 2001 From: strasharo Date: Sun, 1 May 2016 15:43:17 +0300 Subject: [PATCH] fix capture handshake menu --- fluxion | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/fluxion b/fluxion index 1cafb0e..2bf135c 100755 --- a/fluxion +++ b/fluxion @@ -2292,9 +2292,12 @@ function deauthMENU { clear mostrarheader + echo "*Capture Handshake* " echo - echo -e " "$blue"1)"$transparent" Start" - echo -e " "$blue"2)"$transparent" Strike" + echo -e "Status handshake: $Handshake_statuscheck" + echo + echo -e " "$blue"1)"$transparent" Check" + echo -e " "$blue"2)"$transparent" Strike again" echo -e " "$blue"3)"$transparent" Back (Select another deauth method)" echo -e " "$blue"4)"$transparent" Select another network" echo -e " "$blue"5)"$transparent" Exit" @@ -2302,8 +2305,8 @@ function deauthMENU { read yn case $yn in - 1 ) checkhandshake; break;; - 2) $DEAUTH; break;; + 1 ) checkhandshake;; + 2 ) capture; $DEAUTH & ;; 3 ) conditional_clear; askclientsel; break;; 4 ) killall airodump-ng &>$flux_output_device; CSVDB=dump-01.csv; breakmode=1; selection; break ;; 5 ) exitmode; break;;