mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
Disallow biometric key over IPC (#16161)
This commit is contained in:
@@ -20,6 +20,11 @@ export class DesktopCredentialStorageListener {
|
|||||||
serviceName += message.keySuffix;
|
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;
|
let val: string | boolean = null;
|
||||||
if (message.action && message.key) {
|
if (message.action && message.key) {
|
||||||
if (message.action === "getPassword") {
|
if (message.action === "getPassword") {
|
||||||
|
|||||||
Reference in New Issue
Block a user