Generate Wordlists
Theory
Practice
Generate a Wordlist
cewl -w list.txt -d 5 -m 5 http://target.netpython3 username_generator.py -w users.lst#min=2 max=2 charset=01234abcd outfile=crunch.txt
crunch 2 2 01234abcd -o crunch.txt#min=6 max=6 option=pass[0-9][0-9] outfile=stdin
crunch 6 6 -t pass%%#Interactive mod
python3 cupp.py -i
#Pre-created wordlists
python3 cupp.py -l
# Alecto database default logins
python3 cupp.py -aRule-Based Wordlists
# Create wordlist from a rule
hashcat -r /usr/share/rules/best64.rule wordlist.txt --stdout > new_wordlist.txtCreate your own rules
Description
Function
Example Rule
Ex. Input
Ex. Output
# Using following rule file:
# $1 c
$ hashcat -r my.rule password.txt --stdout
Password1
# Using following rule file:
# $1
# c
$ hashcat -r my.rule password.txt --stdout
password1
PasswordReferences
Last updated