Penetration Testing 4 commands
Hydra
Fast and flexible online password cracking tool. Supports numerous protocols including FTP, HTTP, HTTPS, SSH, and more.
brute-forcepasswordlogincracking
Installation
sudo apt install hydra
# or
brew install hydraCommands & usage
4 entrieshydra -l <user> -P <wordlist> <target> sshSSH brute force
hydra -l <user> -P <wordlist> <target> ftpFTP brute force
hydra -l <user> -P <wordlist> <target> http-post-form '/login:user=^USER^&pass=^PASS^:F=failed'HTTP form brute force
hydra -L users.txt -P passwords.txt <target> rdpRDP brute force
Use cases
Login brute forcingPassword auditingService credential testingCTF challengesSecurity assessments