Standard Wordlist

Standard Wordlist

  • Extract commonly used words from a website using cewl , -m for minimum characters cewl www.megacorpone.com -m 6 -w megacorp-cewl.txt

  • Customizing wordlist using rules in JohnTheRipper , like adding 2 digit number behind ever word

  • Create rule , sudo nano /etc/john/john.conf

<aside> 👨‍💻 [List.Rules:digit] #Add two numbers and 1 special character to the end of each password

$[0-9]$[0-9]$[%^&*()_+\-={}|\[\]\\;':",./\<\>?`~]

</aside>

  • john --wordlist=megacorp-cewl.txt --rules=digit --stdout > mutated.txt

Last updated