Skip to content
Ridgeback666 edited this page Mar 31, 2013 · 7 revisions

Word List.

Brian Mork's word list

[INIT_6's word list](need to upload them all)

I will be rehosting the following on my server as well. Until I do:

World list crap clean out script

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.

Clone this wiki locally