> 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/crawling-y-spidering.md).

# Crawling y spidering

## CeWL

```sh
cewl http://<target> -d <depth> -m <min-word-length> -w wordlist-crawling.txt
```

* \<target> = objetivo.
* -d = depth to spider.
  * \<depth> = profundidad, por ejemplo: `3`.
* -m = longitud mínima de palabra.
  * \<min-word-length> = longitud mínima de palabra, por ejemplo: `3`.
* -w = guarda resultado en archivo `wordlist-crawling.txt`.

## Hakrawler

```sh
echo 'http://<target>' | hakrawler | sort -u
```

## OWASP Zed Attack Proxy (ZAP)

```
OWASP Zed Attack Proxy (ZAP) -> Tools -> Spider
```
