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

# Modifier le rôle dans le profil utilisateur

### Le rôle utilisateur peut être modifié dans le profil utilisateur

Ce laboratoire contient un panneau d'administration situé à **/admin**, accessible uniquement aux utilisateurs connectés ayant un **roleid = 2**. / La mission est de modifier notre propre rôle, d'accéder à l'interface d'administration et de supprimer l'utilisateur **carlos**.

1. Nous nous connectons avec les identifiants fournis :/ **wiener: peter**
2. Dans la section profil, la modification de l'adresse e-mail est envoyée via une requête JSON, par exemple :

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

La réponse renvoie directement ces données en JSON, ce qui montre qu'aucun filtrage strict n'est appliqué.

<figure><img src="/files/4f87ac958ecb1df2028fc43030982e375c9864e2" alt=""><figcaption></figcaption></figure>

En injectant un paramètre supplémentaire **roleid**, nous testons :

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

5. Le serveur accepte cette modification et renvoie un **302 Found**, confirmant que notre rôle a été changé en **2**.
6. Une fois promus administrateurs, nous avons accès à **/admin**, où il suffit d'utiliser la fonctionnalité pour **supprimer l'utilisateur carlos** et ainsi résoudre le laboratoire.

<figure><img src="/files/b6cb55e7acdf14b0e22c3e35e663a50630d60415" 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/fr/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.
