# Hydra Cheat Sheet

**Syntax:**

```python
hydra -l [Username] -P [Password File] [Target] [Service] [Options]
```

**Example:**

```python
hydra -l admin -P passwords.txt 192.168.1.1 ssh
```

**Options/Flags:**

* `-l`: Username to test
    
* `-P`: Password file
    
* `-s`: Service (e.g., `ssh`, `http`)
    
* `-V`: Show login attempts
    
* `-t`: Number of tasks/threads
    
* `-vV`: Verbose output
    
* `-h`: Help
