From 3fe501138d8f265a40c7cbea48f2820492108e40 Mon Sep 17 00:00:00 2001 From: Matias Barcenas Date: Mon, 23 Apr 2018 01:12:02 -0500 Subject: [PATCH] Fixed bug caused by outdated global identifier. The monitoring time was failing to display in the attack logger. Clarified a commented piece of code, explaining the exclusion. --- attacks/Handshake Snooper/attack.sh | 3 +++ attacks/Handshake Snooper/language/en.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/attacks/Handshake Snooper/attack.sh b/attacks/Handshake Snooper/attack.sh index d000bb4..f210e81 100755 --- a/attacks/Handshake Snooper/attack.sh +++ b/attacks/Handshake Snooper/attack.sh @@ -237,6 +237,9 @@ handshake_snooper_unset_jammer_interface() { handshake_snooper_set_jammer_interface() { if [ "$HandshakeSnooperJammerInterface" ]; then return 0; fi + + # NOTICE: The code below should be excluded because the interface selected + # below is also being used as the monitoring interface (required)! #if [ "$HandshakeSnooperDeauthenticatorIdentifier" = \ # "$HandshakeSnooperMonitorMethodOption" ]; then return 0; fi diff --git a/attacks/Handshake Snooper/language/en.sh b/attacks/Handshake Snooper/language/en.sh index 23823e5..4a8bb69 100755 --- a/attacks/Handshake Snooper/language/en.sh +++ b/attacks/Handshake Snooper/language/en.sh @@ -3,7 +3,7 @@ # description: Acquires WPA/WPA2 encryption hashes. -HandshakeSnooperJammerInterfaceQuery="Select an interface for jamming." +HandshakeSnooperJammerInterfaceQuery="Select an interface for monitoring & jamming." # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> HandshakeSnooperMethodQuery="Select a method of handshake retrieval" HandshakeSnooperMonitorMethodOption="Monitor (${CYel}passive$CClr)" @@ -20,7 +20,7 @@ HandshakeSnooperVerifierSynchronicityAsynchronousOption="Asynchronously (${CYel} HandshakeSnooperVerifierSynchronicitySynchronousOption="Synchronously (${CGrn}recommended${CClr})." # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> HandshakeSnooperStartingArbiterNotice="${CCyn}Handshake Snooper$CClr arbiter daemon running." -HandshakeSnooperSnoopingForNSecondsNotice="Snooping for \$HANDSHAKEVerifierInterval seconds." +HandshakeSnooperSnoopingForNSecondsNotice="Snooping for \$HandshakeSnooperVerifierInterval seconds." HandshakeSnooperStoppingForVerifierNotice="Stopping snooper & checking for hashes." HandshakeSnooperSearchingForHashesNotice="Searching for hashes in the capture file." HandshakeSnooperArbiterAbortedWarning="${CYel}Aborted${CClr}: The operation's been aborted, no valid hash was found."