Here are some common Hydra commands and their options:
-
Basic Syntax:
hydra [options] [target] [service] -
Username Specification:
- Single username:
-l <username> - Username list from a file:
-L <file>
- Single username:
-
Password Specification:
- Single password:
-p <password> - Password list from a file:
-P <file>
- Single password:
-
Port Specification:
-s <port> -
Service Specification:
For example, to perform an SSH attack:ssh -
Help Menu:
To display the help menu with all available commands and options:hydra -h -
Example Command:
To perform a brute-force attack on an SSH service:hydra -l username -P /path/to/passwords.txt ssh://target_ip
These commands will help you get started with using Hydra for password cracking.
