From 66cc2d77f47a3bb7b379371bcabbc306e2ffe5a0 Mon Sep 17 00:00:00 2001 From: Sophie Brun Date: Tue, 10 Dec 2019 10:53:10 +0100 Subject: [PATCH] Fix wordlist name --- MANIFEST.in | 2 +- setup.py | 2 +- wifite/config.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 28e91d908..5bf810445 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ include README.md -include wordlist-top4800-probable.txt +include wordlist-probable.txt diff --git a/setup.py b/setup.py index 40a690071..d97fa82bf 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ 'wifite/util', ], data_files=[ - ('share/dict', ['wordlist-top4800-probable.txt']) + ('share/dict', ['wordlist-probable.txt']) ], entry_points={ 'console_scripts': [ diff --git a/wifite/config.py b/wifite/config.py index 6fd9a4b1a..7dda35830 100755 --- a/wifite/config.py +++ b/wifite/config.py @@ -97,8 +97,8 @@ def initialize(cls, load_interface=True): cls.wordlist = None wordlists = [ './wordlist-probable.txt', # Local file (ran from cloned repo) - '/usr/share/dict/wordlist-top4800-probable.txt', # setup.py with prefix=/usr - '/usr/local/share/dict/wordlist-top4800-probable.txt', # setup.py with prefix=/usr/local + '/usr/share/dict/wordlist-probable.txt', # setup.py with prefix=/usr + '/usr/local/share/dict/wordlist-probable.txt', # setup.py with prefix=/usr/local # Other passwords found on Kali '/usr/share/wfuzz/wordlist/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt', '/usr/share/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt',