1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

Disallow biometric key over IPC (#16161)

This commit is contained in:
Bernd Schoolmann
2025-09-02 13:09:03 +02:00
committed by GitHub
parent 789d66ce88
commit 45d0e90607

View File

@@ -20,6 +20,11 @@ export class DesktopCredentialStorageListener {
serviceName += message.keySuffix;
}
// Biometric is internal to the main process and must not be exposed via IPC
if (serviceName == "Bitwarden_biometric") {
return;
}
let val: string | boolean = null;
if (message.action && message.key) {
if (message.action === "getPassword") {