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.
This commit is contained in:
parent
8d2304e71b
commit
3fe501138d
|
@ -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
|
||||
|
||||
|
|
|
@ -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."
|
||||
|
|
Loading…
Reference in New Issue