CVE-2017-10862: Insufficient Data Verification in io.really:jwt-scala
5.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.45828%
CWE
Published
5/17/2022
Updated
1/30/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
io.really:jwt-scala | maven | <= 1.2.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper algorithm handling during JWT verification. The JVN advisory explicitly states the root cause is improper processing of JWT headers, particularly the 'alg' field. The decode
function (JWT.decode
) is responsible for signature validation but didn't properly enforce algorithm consistency between the header and verification logic. This matches common JWT vulnerabilities where the 'alg: none' attack or algorithm confusion could occur. The library's documentation shows decode
is the primary verification entry point, and the CWE-345
classification confirms insufficient authenticity checks during this process.