> 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/web/access-control/insecure-direct-references-to-objects.md).

# Referencias directas inseguras a objetos

### Referencias directas inseguras a objetos

**Objetivo del laboratorio:** Los registros de chat de los usuarios se almacenan directamente en el sistema de archivos del servidor y se recuperan mediante URL estáticas. El objetivo es encontrar la contraseña del usuario **carlos** y luego iniciar sesión en su cuenta.

<figure><img src="/files/b0d830e31441e31d919d2b21594335fff9dac5fa" alt="" width="563"><figcaption></figcaption></figure>

Se observa una función de correo electrónico con una opción para descargar la transcripción del chat mediante una **GET** solicitud.

<figure><img src="/files/7a3fdf37f1aaf94506e91a5e74a7056272b408e0" alt=""><figcaption></figcaption></figure>

La URL es la siguiente:

```
/download-transcript/1.txt
```

Simplemente cambiando el identificador del archivo en la URL, es posible acceder a las transcripciones de otros usuarios sin ninguna protección. Por ejemplo:

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

Este archivo muestra el contenido de una conversación que contiene **la contraseña de carlos**.


---

# 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/web/access-control/insecure-direct-references-to-objects.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.
