Changing default wordlists, fix bug in wps/wash

This commit is contained in:
derv82
2017-05-14 11:03:10 -04:00
parent c836cb9e6b
commit 2726381017
2 changed files with 1 additions and 4 deletions

View File

@@ -60,7 +60,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/sqlmap/txt/wordlist.txt'
'/usr/share/wordlists/fern-wifi/common.txt'
]
for wlist in wordlists:
if os.path.exists(wlist):

View File

@@ -43,9 +43,6 @@ class Wash(object):
bssids = [bssid.upper() for bssid in Wash.BSSID_REGEX.findall(p.stdout())]
for t in targets:
t.wps = t.bssid.upper() in bssids
if t.bssid.lower() == bssid.lower():
# Update the WPS flag
t.wps = True
if __name__ == '__main__':