Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.md
include wordlist-top4800-probable.txt
include wordlist-probable.txt
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'wifite/util',
],
data_files=[
('share/dict', ['wordlist-top4800-probable.txt'])
('share/dict', ['wordlist-probable.txt'])
],
entry_points={
'console_scripts': [
Expand Down
4 changes: 2 additions & 2 deletions wifite/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down