# 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
```


---

# Agent Instructions: 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://web.mrw0l05zyn.cl/escaneo-y-enumeracion/fuzzing.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.
