-
Notifications
You must be signed in to change notification settings - Fork 1
WordList
[INIT_6's word list](need to upload them all)
I will be rehosting the following on my server as well. Until I do:
- http://contest-2010.korelogic.com/wordlists.html
- http://www.skullsecurity.org/wiki/index.php/Passwords
- http://www.insidepro.com/dictionaries.php
- http://blog.g0tmi1k.com/2011/06/dictionaries-wordlists.html
cat dirtyfile.txt | awk '{gsub(/punct:/,"")}1' | tr A-Z a-z | sed 's/[0-9]*//g' | sed -e 's/ //g' | strings | tr -cs '[:alpha:]' '\ ' | sed -e 's/ /\n/g' | tr A-Z a-z | sort -u > cleanfile.txt
Clean a wordlist for use with password cracking tools and rules Using large wordlists is cumbersome. Using password cracking programs with rules such as Hashcat or John the ripper is much more effective. In order to do this many times we need to "clean" a wordlist removing all numbers, special characters, spaces, whitespace and other garbage. This command will covert a entire wordlist to all lowercase with no garbage.
#TODO Need to create a good base word list that can be used with hashcat Markov stats.