CVE-2021-3642: Observable Discrepancy in Wildfly Elytron
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.44937%
CWE
Published
5/24/2022
Updated
1/27/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.wildfly.security:wildfly-elytron | maven | <= 1.10.13 | 1.10.14 |
org.wildfly.security:wildfly-elytron | maven | >= 1.11.0, <= 1.15.4 | 1.15.5 |
org.wildfly.security:wildfly-elytron | maven | = 1.16.0 | 1.16.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability specifically affects ScramServer's proof verification mechanism. Timing attacks require observable differences in processing time between valid and invalid inputs. The critical point would be in client proof validation where a standard string comparison (non-constant-time) was likely used. While no direct patch is shown, the CWE-203 classification and SCRAM protocol context indicate proof comparison functions as the vulnerable area. The main vulnerable function
would be the direct proof validator()
, with the authentication handler being a secondary indicator.