Security Vulnerability Report
中文
CVE-2026-46419 CVSS 7.5 HIGH

CVE-2026-46419

Published: 2026-05-14 02:17:22
Last Modified: 2026-05-14 18:31:46

Description

Yubico webauthn-server-core (aka java-webauthn-server) 2.8.0 before 2.8.2 incorrectly checks a function's return value in the second factor flow, leading to impersonation.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

2.8.0
2.8.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// Conceptual PoC demonstrating the logic flaw public class VulnerableAuthFlow { public boolean processSecondFactor(User user, Token token) { // Vulnerable function that should return boolean boolean isValid = validateSignature(token); // FLAW: The code might not check 'isValid' correctly, // or assume the function throws an exception instead of returning false. // Example of vulnerable logic (hypothetical): try { validateSignature(token); // Returns void or int, ignored return value return true; // Always returns true if no exception } catch (Exception e) { return false; } } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-46419", "sourceIdentifier": "[email protected]", "published": "2026-05-14T02:17:21.917", "lastModified": "2026-05-14T18:31:45.970", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Yubico webauthn-server-core (aka java-webauthn-server) 2.8.0 before 2.8.2 incorrectly checks a function's return value in the second factor flow, leading to impersonation."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-253"}]}], "references": [{"url": "https://github.com/Yubico/java-webauthn-server/releases/tag/2.8.2", "source": "[email protected]"}, {"url": "https://www.yubico.com/support/security-advisories/ysa-2026-02/", "source": "[email protected]"}]}}