> For the complete documentation index, see [llms.txt](https://securitylayer.gitbook.io/securitylayer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://securitylayer.gitbook.io/securitylayer/pentesting-tools/tools/ffuf.md).

# Ffuf

Herramienta de fuzzing utilizada para:

* **Descubrir directorios y archivos ocultos** en aplicaciones web.
* **Enumerar subdominios**.
* **Realizar pruebas de fuzzing** en parámetros GET o POST.
* **Explorar APIs** o rutas ocultas en una web.

Buscar **directorios o archivos ocultos** en el dominio usando el diccionario común de `dirb:`

```
ffuf -u http://dominio.com/FUZZ -w /usr/share/wordlists/dirb/common.txt
```

Buscar subdominios:

```
ffuf -u http://dominio.com -H 'Host: FUZZ.dominio.com' -w /usr/share/wordlists/SecLists/Discovery/DNS/subdomains-top1million-5000.txt -fw 18
```

<details>

<summary>📌<em><strong>Desglose del comando</strong></em></summary>

* *`-u http://dominio.com`:*\
  *dominio al que se hacen las peticiones. Aunque el fuzzing se hace sobre la cabecera, se necesita una URL base.*
* *`-H 'Host: FUZZ.dominio.com'`:*\
  *aquí se usa el encabezado HTTP `Host`, que es donde se hace el fuzzing para encontrar subdominios.*\
  \&#xNAN;*`FUZZ` será reemplazado por palabras de la wordlist.*
* *`-w /usr/share/wordlists/SecLists/Discovery/DNS/subdomains-top1million-5000.txt`:*\
  *diccionario de subdominios, en este caso con los 5000 más comunes.*
* *`-fw 18`:*\
  *f**iltro por longitud de palabras en la respuesta**. En este caso, si una respuesta tiene **exactamente 18 palabras**, se **ignora**, porque seguramente es una página genérica como "dominio no encontrado" o "error 404".*

</details>

Ver maquinas [Shibboleth](/securitylayer/maquinas-y-modulos-de-htb/linux-medium/shibboleth.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://securitylayer.gitbook.io/securitylayer/pentesting-tools/tools/ffuf.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
