Skip to content

NODE_INTEGRATION_JS_CHECK

Lorenzo Stella edited this page May 25, 2022 · 5 revisions

NODE_INTEGRATION_JS_CHECK - Disable nodeIntegration for untrusted origins

By default, Electron renderers can use Node.js primitives. For instance, a remote untrusted domain rendered in a browser window could invoke Node.js APIs to execute native code on the user’s machine. Similarly, a Cross-Site Scripting (XSS) vulnerability on a website can lead to remote code execution. To display remote content, nodeIntegration should be disabled in the webPreferences of BrowserWindow and webview tags.


Risk

If enabled, nodeIntegration allows JavaScript to leverage Node.js primitives and modules. This could lead to full remote system compromise if you are rendering untrusted content.

Auditing

nodeIntegration and nodeIntegrationInWorker are boolean options that can be used to determine whether Node integration is enabled.

For BrowserWindow, the option defaults to true before v5.0.0. If the option is not present, or is set to true/1, nodeIntegration is enabled as in the following examples:

mainWindow = new BrowserWindow({
    "webPreferences": {
        "nodeIntegration": true,
        "nodeIntegrationInWorker": 1
    }
});

Or simply:

const mainWindow = new BrowserWindow();

References

Clone this wiki locally