Building Custom Wordlists

How to build custom wordlists for password spraying and hash cracking

Hash Cracking

Building Company Specific Wordlist

echo;echo
vared -p 'Company Website URL (Ex: https://www.example.com): ' -c ORG_URL
vared -p 'Company Domain (Ex: example.com): ' -c ORG_DOMAIN
vared -p 'Company Name (Ex: ABC Example) (Do NOT ADD "org", "inc" ... ect): ' -c ORG_NAME
vared -p 'Company Domain (Ex: example.com): ' -c ORG_DOMAIN
WORDLIST="$ORG_DOMAIN-wordlist.txt"
APPEND_FILE="to-append.txt"

cewl $ORG_WEB -m 5 -x 12 -d 4 | cut -d ',' -f 1 | awk '{print tolower($0)}' | sort -u > $WORDLIST

### WORK IN PROGRESS ###

Password Spraying Wordlist

⌚Coming Soon

Last updated