bruteforcing

Custom Wordlists

Html2dic can sometimes work better and faster than Cewl.

curl http://example.com > example.txt

then run

html2dic example.txt

Or 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 --stdout

John

So to crack passwords normally with john

john --wordlist=wordlist.txt dump.txt

Adds the default john rules

john --rules --wordlist=wordlist.txt dump.txt

When 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.txt

Hydra, 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?