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
User/Hash
For a database where the fields are separated by colons (:):
:
awk '{print $1}' FS=':' dump.txt > users.txt
awk '{print $4}' FS=':' dump.txt > hashes.txt
Last updated 1 day ago