Use bully instead of reaver.

Detailed WPS output.

TODO:
* Actually test that cracked PINs are detected & saved, pending #28
* Command-line options to specify max lockout/timeout/noassoc/failure
This commit is contained in:
derv82
2017-05-17 23:19:49 -04:00
parent c19332c25c
commit c4773c6d1a
8 changed files with 671 additions and 412 deletions

View File

@@ -22,8 +22,8 @@ class Client(object):
6 Probed ESSIDs
'''
self.station = fields[0].strip()
self.power = int(fields[3].strip())
self.packets = int(fields[4].strip())
self.power = int(fields[3].strip()) if fields[3].strip().isdigit() else 0
self.packets = int(fields[4].strip()) if fields[4].strip().isdigit() else 0
self.bssid = fields[5].strip()