> 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/access-control/unprotected-admin-functionality.md).

# 未受保护的管理员功能

### 未受保护的管理员功能

此实验展示了一个可访问的管理面板，且没有任何形式的访问控制。

#### 目标

删除用户 **carlos** 通过管理界面。

#### 分析

通过遍历目录，例如使用 **gobuster**，可以识别隐藏路径：

{% code overflow="wrap" %}

```bash
gobuster dir -u https://0a7a004004ed1cdf8016bc3f0056007f.web-security-academy.net/ -w /usr/share/SecLists/Discovery/Web-Content/common.txt -t 50
```

{% endcode %}

<figure><img src="/files/a96b4a6ffcb67571ba4ae75dece8d936bd18099c" alt="" width="495"><figcaption></figcaption></figure>

该 **robots 文件。txt** 会暴露一个指向管理面板的敏感 URL：/ `/administrator-panel`

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

通过直接访问此未受保护的界面，可以管理用户。/ 只需选择该用户 **carlos** 并将其删除。


---

# 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/access-control/unprotected-admin-functionality.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.
