mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-13 10:24:20 +01:00
Move linux memory isolations behind env variable (#10525)
This commit is contained in:
parent
e3d9804b5f
commit
5527ffb89c
@ -120,13 +120,15 @@ export class WindowMain {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.logService.info(
|
// this currently breaks the file portal, so should only be used when
|
||||||
"Disabling external memory dumps & debugger access in main process",
|
// no files are needed but security requirements are super high https://github.com/flatpak/xdg-desktop-portal/issues/785
|
||||||
);
|
if (process.env.EXPERIMENTAL_PREVENT_DEBUGGER_MEMORY_ACCESS === "true") {
|
||||||
|
this.logService.info("Disabling memory dumps in main process");
|
||||||
try {
|
try {
|
||||||
await processisolations.disableMemoryAccess();
|
await processisolations.disableMemoryAccess();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.logService.error("Failed to disable memory access", e);
|
this.logService.error("Failed to disable memory dumps", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user