# Clickjacking

## Burp Clickbandit

* <https://portswigger.net/burp/documentation/desktop/tools/clickbandit>

## X-Frame-Options

El encabezado HTTP **X-Frame-Options** puede ser usado para indicar si debería permitir al navegador renderizar una página en un `<frame>`, `<iframe>` o `<object>`. Las páginas webs pueden usar este encabezado para evitar ataques de clickjacking, asegurándose que su contenido no es embebido en otros sitios.

```http
X-Frame-Options: DENY
X-Frame-Options: SAMEORIGIN
X-Frame-Options: ALLOW-FROM <URI>
```

* `DENY`: la página web no puede ser mostrada en un marco, independiente del sitio que esté intentándolo.
* `SAMEORIGIN`: la página sólo puede ser mostrada en un marco del mismo origen que dicha página.&#x20;
* `ALLOW-FROM <URI>`: la página sólo puede ser mostrada en un marco del origen especificado.


---

# Agent Instructions: 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:

```
GET https://web.mrw0l05zyn.cl/explotacion/clickjacking.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
