Add passkeys project: WebAuthn ceremonies, a software authenticator and the one-time-token fallback
Fourth Maven project in the repository. Registration and authentication run end to end with no browser and no hardware key: VirtualAuthenticator emits real CBOR attestation objects and real ES256 assertion signatures, and tools/PasskeyCeremony.java drives the live HTTP endpoints with them. Profiles cover userVerification REQUIRED, DIRECT attestation, a disallowed origin and JDBC persistence. Eleven doc chapters and twelve captured transcripts under docs/passkeys and docs/output/pk-*.txt, all regenerated by passkeys/scripts/run-all.sh.
This commit is contained in:
15
docs/output/pk-ott.txt
Normal file
15
docs/output/pk-ott.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
==============================================================================
|
||||
One-time token login - the way in, and the way back after a lost device
|
||||
==============================================================================
|
||||
|
||||
=== One-time token: the way in when there is no passkey yet, and the way back ===
|
||||
POST /ott/generate -> HTTP 302, Location: http://localhost:8080/login/ott
|
||||
token delivered out of band (the handler wrote it to a file): c5a7e60d-acd0-48a7-bb90-c03195fd783b
|
||||
POST /login/ott -> HTTP 302, Location: http://localhost:8080/
|
||||
|
||||
$ GET /me
|
||||
HTTP 200
|
||||
{"name":"user","authenticationType":"OneTimeTokenAuthentication","authorities":["FactorGrantedAuthority [authority=FACTOR_OTT, issuedAt=2026-08-25T17:21:08.899894517Z]","ROLE_USER"]}
|
||||
|
||||
=== The same token, a second time ===
|
||||
POST /login/ott -> HTTP 302, Location: http://localhost:8080/login?error
|
||||
Reference in New Issue
Block a user