2.2.5: PMKID timeout changed to 30sec. --pmkid-timeout option to change.

For #134
This commit is contained in:
derv82
2018-09-03 10:26:08 -07:00
parent 838ea43a73
commit 5e204686fa
3 changed files with 20 additions and 7 deletions

View File

@@ -108,7 +108,7 @@ class AttackPMKID(Attack):
The PMKID hash (str) if found, otherwise None.
'''
self.keep_capturing = True
self.timer = Timer(15)
self.timer = Timer(Configuration.pmkid_timeout)
# Start hcxdumptool
t = Thread(target=self.dumptool_thread)