Password Mutations & Custom Wordlists

  • Utiliza o cewl para gerar uma lista de palavras com base nas palavras-chave presentes em um site.

cewl https://www.inlanefreight.com -d 4 -m 6 --lowercase -w inlane.wordlist
  • Utiliza o Hashcat para gerar uma lista de palavras baseada em regras

hashcat --force password.list -r custom.rule --stdout > mut_password.list
  • Gerar uma lista de possíveis nomes de usuário com a ferramenta username-anarchy

./username-anarchy -i /path/to/listoffirstandlastnames.txt
  • Baixar uma lista de extensões

curl -s https://fileinfo.com/filetypes/compressed | html2text | awk '{print tolower($1)}' | grep "\." | tee -a compressed_ext.txt

Last updated