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

@@ -21,7 +21,7 @@ class Attack(object):
Waits for target to appear in airodump
'''
start_time = time.time()
targets = airodump.get_targets()
targets = airodump.get_targets(apply_filter=False)
while len(targets) == 0:
# Wait for target to appear in airodump.
if int(time.time() - start_time) > Attack.target_wait:
@@ -45,6 +45,3 @@ class Attack(object):
return airodump_target
if __name__ == '__main__':
pass