2.1.9: --pmkid option, cleaned up --cracked, other bug fixes.
PMKID: * `--pmkid` option only attacks WPA networks with PMKID capture + crack * Decreased PMKID capture time from 60 seconds to 15 seconds. * Ignores PMKID attack if `--wps-only` is set. WPS: * Ctrl+C while waiting for `bully` to fetch PSK = remembers PIN, PSK is unknown. Misc: * `--cracked` prints results on single lines (much easier to read) * Fixed typo when required dependencies are not found (closes #127)
This commit is contained in:
@@ -23,7 +23,16 @@ class CrackResultWEP(CrackResult):
|
||||
Color.pl('{+} Hex Key: {G}%s{W}' % self.hex_key)
|
||||
if self.ascii_key:
|
||||
Color.pl('{+} Ascii Key: {G}%s{W}' % self.ascii_key)
|
||||
|
||||
|
||||
def print_single_line(self, longest_essid):
|
||||
self.print_single_line_prefix(longest_essid)
|
||||
Color.p('{G}%s{W}' % 'WEP'.ljust(5))
|
||||
Color.p(' ')
|
||||
Color.p('Hex: {G}%s{W}' % self.hex_key.replace(':', ''))
|
||||
if self.ascii_key:
|
||||
Color.p(' (ASCII: {G}%s{W})' % self.ascii_key)
|
||||
Color.pl('')
|
||||
|
||||
def to_dict(self):
|
||||
return {
|
||||
'type' : self.result_type,
|
||||
|
||||
Reference in New Issue
Block a user