bruteforcing
Custom Wordlists
Html2dic can sometimes work better and faster than Cewl.
curl http://example.com > example.txtthen run
html2dic example.txtOr you can use Cewl with a minimum word length of 4 here and mangle it with John.
cewl -m 4 -w dict.txt http://site.url
john --wordlist=dict.txt --rules --stdoutJohn
So to crack passwords normally with john
john --wordlist=wordlist.txt dump.txtAdds the default john rules
john --rules --wordlist=wordlist.txt dump.txtWhen you have Linux passwd and a shadow file to crack, run this
unshadow passwd-file.txt shadow-file.txt > unshadowed.txt
john --rules --wordlist=wordlist.txt unshadowed.txtHydra, Patator, Medusa, Crowbar
Hydra post form example from Nineveh on Hackthebox.
Medusa http authentication example
Crowbar brute root user with all SSH keys in a folder
SSH password brute Patator syntax
SMTP Patator syntax
Ncrack RDP
Last updated
Was this helpful?