> 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/python-library-hijacking/python-library-hijacking-hashlib-linux-privilege-escalation.md).

# Secuestro de biblioteca Python (hashlib) - Escalada de privilegios en Linux

## Qué es

El secuestro de bibliotecas de Python abusa de la resolución de importaciones de Python cuando un script con privilegios importa módulos desde una ubicación escribible. Al colocar un módulo malicioso antes en la ruta de importación, el atacante puede ejecutar código como el usuario privilegiado. Esta página específica se centra en **Secuestro de bibliotecas de Python (hashlib)** 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
python3 -c "import sys; print('/n'.join(sys.path))"
find / -name '*.py' -writable 2>/dev/null
```

## Ejemplos

A medida que **usuario jordan**, vemos cuáles son los privilegios de sudoers, intentamos ejecutar el **script de Python** como jordanmacia y funciona correctamente:

<figure><img src="/files/73ac297d348f8b205c488019d6142a31c49e81a8" alt=""><figcaption></figcaption></figure>

En este caso, tenemos **permisos de lectura pero no de escritura**. Observamos que importa la **variable hashlib**. Si hacemos una **locate** con el nombre de la variable, veremos dónde está **almacenada**. Finalmente, observamos que en la **PATH de Python**, la primera está vacía y esto es una vulnerabilidad:

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

En el mismo directorio /tmp, creamos el **hashlib.py** archivo con el siguiente contenido. Este script, cuando ejecutamos el script **example.py** en general, Python comienza a buscar estas bibliotecas en el directorio de trabajo actual, luego en las rutas definidas en la **variable sys.path**.

```python
import os 
os.system("bash)
```

Finalmente, al ejecutar la **example.py**, nos dará acceso a Bash como usuario jordanmacia (habremos **cambiado a un usuario** con probablemente más privilegios):

<figure><img src="/files/c42be6f447b42650b73c2d409fa32413faa10fc6" alt="" width="563"><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/python-library-hijacking/python-library-hijacking-hashlib-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.
