Username bruteforcing

This is useful when anonymous sessions are not allowed. Bruteforcing still is a valid technique.

Discover username

  • wordlist collection

  • Web site info

  • Image metadata

  • Other information collected from the other machines

  • ONIST

Create a username list

Manual creation

# Change all lower to all upper
tr '[:lower:]' '[:upper:]' < users.txt >> users-updated.txt

# Change all upper cases to all lower cases
tr '[:upper:]' '[:lower:]' < users.txt > users-updated.txt

# Change the first letter only to upper in the string
cat users.txt | sed 's/./\U&/'

username-anarchy

Brutefocing usernames against a Kerberos service

Last updated