Wordlists

Create a subset wordlist

grep -iE 'love|sex|secret|god' ~/Documents/Wordlists/rockyou.txt > wordlist

Make Custom Wordlists

crunch <min_length> <max_length> -t <pattern> -o <output_file>

Generates a numeric wordlist

for i in {1000..9999}; do printf "%d\n" $i; done > wordlist.txt
Create a User/Hash wordlists

For a database where the fields are separated by colons (:):

First field are usernames
awk '{print $1}' FS=':' dump.txt > users.txt
Fourth field are hashes
awk '{print $4}' FS=':' dump.txt > hashes.txt

Last updated