From d6aeb97cfc3c9e75f0d08071208f617bd76f9af3 Mon Sep 17 00:00:00 2001 From: kimocoder Date: Tue, 27 Feb 2018 08:24:22 +0100 Subject: [PATCH] Minor fixes --- py/Arguments.py | 2 +- py/AttackWPA.py | 1 + py/Configuration.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/py/Arguments.py b/py/Arguments.py index a6855d0..5560620 100644 --- a/py/Arguments.py +++ b/py/Arguments.py @@ -22,7 +22,7 @@ class Arguments(object): dest='scan_time', metavar='[scantime]', type=int, - help=Color.s('Scan time to (default: {G}ask{W})')) + help=Color.s('Seconds to scan before attacking (default: {G}ask{W})')) glob.add_argument('-i', action='store', dest='interface', diff --git a/py/AttackWPA.py b/py/AttackWPA.py index b1ddaaa..be6cddd 100644 --- a/py/AttackWPA.py +++ b/py/AttackWPA.py @@ -51,6 +51,7 @@ class AttackWPA(Attack): handshake = self.load_handshake(bssid=bssid, essid=essid) if handshake: + Color.pl('\n\n{+} {G}using existing handshake found at %s{W}' % handshake.capfile) Color.pl('\n\n{+} {G}successfully loaded handshake{W}') else: timeout_timer = Timer(Configuration.wpa_attack_timeout) diff --git a/py/Configuration.py b/py/Configuration.py index fc97378..067ffe7 100644 --- a/py/Configuration.py +++ b/py/Configuration.py @@ -28,7 +28,7 @@ class Configuration(object): Configuration.verbose = 0 # Verbosity level. - Configuration.scan_time = 0 # Scan time + Configuration.scan_time = 0 # Scan time Configuration.all_targets = False # Run attacks against all targets automatically Configuration.tx_power = 0 # Wifi transmit power (0 is default) @@ -69,7 +69,7 @@ class Configuration(object): wordlists = [ '/usr/share/wfuzz/wordlist/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt', '/usr/share/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt', - '/usr/share/wordlists/fern-wifi/common.txt' + '/usr/share/fern-wifi-cracker/extras/wordlists/common.txt' ] for wlist in wordlists: if os.path.exists(wlist):