398 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
36
views
TypeError: Invalid JWK EC key
I am trying to implement the @simplewebauthn/browser package.
Here is how I save the credentials. There is no problem on fingerprint verification.
const publicKeyBase64url = Buffer.from(credential....
5
votes
1
answer
226
views
How do I create a passkey on windows based browser without needing Windows Hello enabled
I'm trying to call navigator.credentials.create on my windows-based web page and Windows Hello is not enabled. The ceremony I'd like to see is the black box asking me if I'd like to use my mobile, ...
0
votes
0
answers
59
views
FIDO2 Fingerprint Verification Fails in Production (Works on Localhost) – Express.js + fido2-lib
Context
I’ve implemented FIDO2 verification for login and signup on my Express.js website. Everything works perfectly in localhost, but in production, the fingerprint verification of my security key ...
0
votes
0
answers
479
views
WebAuthn "the operation either timed out or was not allowed" error when userVerification is set to "preferred"
I'm implementing WebAuthn passkey support, and I encounter the following error on some devices when initiating authentication or registration:
The operation either timed out or was not allowed
This ...
2
votes
1
answer
337
views
Mismatched Nonce on Server Side Apple App Attest
I am currently trying to learn how to implement Apple's App Attest in my apps and am using Go for my backend server. I found this guide which explains that I need to verify that a specific set of ...
0
votes
0
answers
48
views
Spring Security WebAuthN confirguration
I have a problem with WebAuthN realisation
For now I have JWT token authorization with custom UserDetailsService and UserDetails.
I want to get JWT token after success WebAuthN authorization.
Problems:...
0
votes
0
answers
188
views
How to register client's webauthn credentials in a browser keepass alike authenticator
The webauthn.io website demonstrates webauthn registration and authentication. In my case, the credentials are stored in a password manager (Enpass). The link between the password manager and the ...
0
votes
0
answers
65
views
Safari does not include topOrigin in WebAuthn clientDataJSON despite crossOrigin: true in iFrame
I’m working on a cross-origin WebAuthn implementation where a parent page embeds an iframe from a different origin to perform authentication. According to the WebAuthn Level 3 spec (Section 7.1.1), ...
0
votes
1
answer
47
views
Can Webauthn FIDO authenticator establish long term binding to www browser?
I understand that entering a PIN into a www browser can prove to a FIDO authenticator that the owner of the authenticator is present and simultaneous approve that browser to act on their behalf. If ...
0
votes
1
answer
73
views
Handle biometric authentification across multiple devices
Let's assume I have a website that implements biometric authentication using WebAuthn.
Let's also assume a user sign up for the first time using a mobile phone (where biometric peripherals are ...
0
votes
1
answer
186
views
How to define custom onAuthenticationSuccess for Spring Security 6.4.4 webauthn (passkey) authentication?
I am using Spring Security 6.4.4 for webauthn (passkey) authentication.
depenendencies {
implementation "org.springframework.security:spring-security-web"
implementation "com....
0
votes
0
answers
42
views
Error: webauthn has error ( use cross platform)
I try to use webauthn by using cross platform.
but, I got a error. ( use platform has normal )
Error message is Error - Error: 1 remaining bytes after end of encoding
const credentialOption = {
...
-2
votes
2
answers
203
views
Simulate Platform Authenticator with Virtual TPM [closed]
I want to use WebAuthn based authentication in Firefox on Ubuntu 24.04 without a hardware TPM or a separate hardware "security key" (e.g. yubikey).
When it works I would expect a page like ...
0
votes
0
answers
101
views
How to authenticate using SimpleWebAuthnBrowser?
I want to implement webauthn using PHP (specifically Yii2 Framework) along with the SimpleWebAuthnBrowser library (https://simplewebauthn.dev/docs/packages/browser)
When registering the device, here ...
2
votes
1
answer
143
views
How to include counter in WebAuth login flow
I'm building a login flow using WebAuthn.
When the passkey is already registered, from which I have initially receive a counter of `0 I then prepare the login request options as follows
f2l = new ...