WebAuthn.setResponseOverrideBitsResets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
| Name | Type | Description |
|---|---|---|
authenticatorId | AuthenticatorId | |
isBogusSignature (optional) | boolean | If isBogusSignature is set, overrides the signature in the authenticator response to be zero. Defaults to false. |
isBadUV (optional) | boolean | If isBadUV is set, overrides the UV bit in the flags in the authenticator response to be zero. Defaults to false. |
isBadUP (optional) | boolean | If isBadUP is set, overrides the UP bit in the flags in the authenticator response to be zero. Defaults to false. |
{
"id": 1,
"method": "WebAuthn.setResponseOverrideBits",
"params": {
"authenticatorId": "authenticatorId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('WebAuthn.setResponseOverrideBits', {"authenticatorId": "authenticatorId-value"});
console.log(result);