Skip to content

EXPERIMENTAL_FEATURES_JS_CHECK

Anthony Trummer edited this page Jan 6, 2022 · 2 revisions

EXPERIMENTAL_FEATURES_JS_CHECK - Do not use Chromium’s experimental features

The experimentalFeatures and experimentalCanvasFeatures flags can be used to enable Chromium’s experimental features, which increase the overall attack surface for production applications.


Risk

Experimental features may introduce bugs and increase the application attack surface.

Auditing

Search for experimentalFeatures and experimentalCanvasFeatures flags set to true within the webPreferences of BrowserWindow:

mainWindow = new BrowserWindow({
    "webPreferences": {
        "experimentalCanvasFeatures": true
    }
});

References