> 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/change-role-in-user-profile.md).

# 更改用户资料中的角色

### 用户角色可在用户资料中修改

本实验包含一个管理面板，位于 **/admin**，仅限已登录且具有 **roleid = 2**。/ 任务是修改我们自己的角色，访问管理员界面并删除用户 **carlos**.

1. 我们使用提供的凭证登录：/ **wiener: peter**
2. 在资料部分，电子邮件地址的更改通过 JSON 请求发送，例如：

```json
{
"email":"jordan@test.com"
}
```

响应会将此数据直接返回为 JSON，这表明没有应用严格的过滤。

<figure><img src="/files/56ab2be63d631486bfa3547aa69237b614265eac" alt=""><figcaption></figcaption></figure>

通过注入一个额外参数 **roleid**，我们测试：

```json
{
"email":"jordan@test.com",
"roleid": 2
}
```

5. 服务器接受了此更改，并返回一个 **302 Found**，确认我们的角色已更改为 **2**.
6. 一旦提升为管理员，我们就可以访问 **/admin**，在那里只需使用该功能即可 **删除用户 carlos** 从而完成该实验。

<figure><img src="/files/9f316f5259873dd9ccb09dcdf973edb40c35751b" alt="" width="563"><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/access-control/change-role-in-user-profile.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.
