> 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/fuzzing.md).

# Fuzzing

## DIRB

```sh
# General
dirb http://<target> -o dirb-fuzzing-recursive.txt
# Sin búsqueda recursiva
dirb http://<target> -r -o dirb-fuzzing.txt
# Autenticación HTTP
dirb http://<target> -u <user>:<password>
```

* \<target> = objetivo.
* -r = sin búsqueda recursiva.
* -o = guarda resultado en archivo.
* -u = autenticación HTTP.
  * \<user> = usuario.
  * \<password> = contraseña.

## dirsearch

```shell
# General
dirsearch -u http://<target>/ -o $(pwd)/dirsearch-fuzzing.txt
# Búsqueda recursiva
dirsearch -u http://<target>/ -o $(pwd)/dirsearch-fuzzing-recursive.txt -r
```
