Wordlists

Usernames

username-anarchy is a tool for generating realistic username lists based on common naming patterns:

# Create username combinations based on the first and last name
username-anarchy -i site_users > user_anar

# Combine wordlists
cat userList >> user_anar

# Deduplicate wordlist
sort -u user_anar > users

Spider-Based

cewl is a custom wordlist generator that spiders a target website to extract unique words for use in user enumeration and password cracking:

cewl --write output.txt http://kali/manual

Last updated

Was this helpful?