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:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user