This vulnerability is marked as RESERVED by NVD. This means that the CVE-ID is reserved for future use by the CVE Numbering Authority (CNA) or a security researcher, but the details of it are not yet publicly available yet.
This page will reflect the classification results once they are available through NVD.
Any vendor information available is shown as below.
io.quarkus:quarkus-security-webauthn: Quarkus WebAuthn Unexpected Authentication Bypass
It is possible to mitigate this issue by disabling the default endpoints after creating a custom one. For example with the call for: import io.vertx.ext.web.Router; import jakarta.enterprise.event.Observes; public class Startup { public void init(@Observes Router router) { System.err.println(“Securing WebAuthn default controller”); router.post("/q/webauthn/callback").order(0).handler(rc -> rc.fail(404)); } }