# Bypassing SOP con Iframes - 2
Impara l'hacking di AWS da zero a esperto con htARTE (HackTricks AWS Red Team Expert)!
* 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 [**The PEASS Family**](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)**.
## Iframes in SOP-2
Nella [**soluzione**](https://github.com/project-sekai-ctf/sekaictf-2022/tree/main/web/obligatory-calc/solution) per questa [**sfida**](https://github.com/project-sekai-ctf/sekaictf-2022/tree/main/web/obligatory-calc)**,** [**@Strellic\_**](https://twitter.com/Strellic\_) propone un metodo simile alla sezione precedente. Vediamolo.
In questa sfida l'attaccante deve **eludere** questo:
```javascript
if (e.source == window.calc.contentWindow && e.data.token == window.token) {
```
Se lo fa, può inviare un **postmessage** con contenuto HTML che verrà scritto nella pagina con **`innerHTML`** senza sanificazione (**XSS**).
Il modo per aggirare il **primo controllo** è rendere **`window.calc.contentWindow`** uguale a **`undefined`** e **`e.source`** uguale a **`null`**:
* **`window.calc.contentWindow`** è in realtà **`document.getElementById("calc")`**. Puoi sovrascrivere **`document.getElementById`** con **``** (nota che l'API Sanitizer -[qui](https://wicg.github.io/sanitizer-api/#dom-clobbering)- non è configurata per proteggere contro attacchi di sovrascrittura del DOM nel suo stato predefinito).
* Pertanto, puoi sovrascrivere **`document.getElementById("calc")`** con **`
`**. Quindi, **`window.calc`** sarà **`undefined`**.
* Ora, abbiamo bisogno che **`e.source`** sia **`undefined`** o **`null`** (perché viene utilizzato `==` invece di `===`, **`null == undefined`** è **`True`**). Ottenere questo è "facile". Se crei un **iframe** e **invii** un **postMessage** da esso e immediatamente **rimuovi** l'iframe, **`e.origin`** sarà **`null`**. Controlla il seguente codice
```javascript
let iframe = document.createElement('iframe');
document.body.appendChild(iframe);
window.target = window.open("http://localhost:8080/");
await new Promise(r => setTimeout(r, 2000)); // wait for page to load
iframe.contentWindow.eval(`window.parent.target.postMessage("A", "*")`);
document.body.removeChild(iframe); //e.origin === null
```
Per aggirare il **secondo controllo** sul token, è possibile inviare il **`token`** con valore `null` e impostare il valore di **`window.token`** su **`undefined`**:
* L'invio del `token` tramite postMessage con valore `null` è banale.
* **`window.token`** viene richiamato dalla funzione **`getCookie`** che utilizza **`document.cookie`**. Si noti che qualsiasi accesso a **`document.cookie`** nelle pagine di origine **`null`** genera un **errore**. Ciò farà sì che **`window.token`** abbia valore **`undefined`**.
La soluzione finale proposta da [**@terjanq**](https://twitter.com/terjanq) è la [**seguente**](https://gist.github.com/terjanq/0bc49a8ef52b0e896fca1ceb6ca6b00e#file-calc-html):
```html
```
Impara l'hacking di AWS da zero a eroe con htARTE (HackTricks AWS Red Team Expert)!
* 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)**.