> 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/xss/dom-xss-in-href-attribute-with-jquery-location-search.md).

# DOM XSS в атрибуте href с jQuery и location.search

### DOM XSS в атрибуте href якоря JQuery с использованием location.search в качестве источника

Уязвимость DOM XSS на странице обратной связи. Сайт использует `$` функцию jQuery, чтобы выбрать `<a>` элемент (ссылку «назад») и заменяет его `href` атрибут значением, извлечённым из `location.search`. Это значение можно контролировать через URL.

**Изучение лабораторной работы:**/ Сделайте так, чтобы ссылка «назад» вызывала `alert(document.cookie)` при нажатии на неё (запустите alert, содержащий cookie на странице).

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

**Наблюдения :**

* Кнопка «Назад» указывает на корень сайта; она связана с `returnPath` параметром в URL.
* Изменив `returnPath`, вы можете определить назначение `href` ссылки.

Используйте JavaScript-схему в `href`:

```javascript
javascript:alert(0)
```

Чтобы получить cookie сессии и вывести:

```javascript
javascript:alert(document.cookie)
```

<figure><img src="/files/5f55dd8fa40443f06b1eafc7673b1cd1ea85f4e3" 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/ru/web/xss/dom-xss-in-href-attribute-with-jquery-location-search.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.
