> For the complete documentation index, see [llms.txt](https://web.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://web.mrw0l05zyn.cl/escaneo-y-enumeracion/herramientas-automatizadas.md).

# Herramientas automatizadas

## Nikto

```shell
nikto -h <target> -p 80 -o nikto.txt -Format txt
```

## Nmap

```sh
# Vulnerabilidades
nmap -p 80,443 --script=vuln <target>
# Heartbleed (CVE-2014-0160)
nmap -p 443 --script=ssl-heartbleed <target>
```

## Nuclei

```sh
nuclei -u <target> -ts -silent
```
