CVE-2020-1762: Insufficient Session Expiration in Kiali
8.6
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.78837%
CWE
Published
5/18/2021
Updated
1/9/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/kiali/kiali | go | >= 0.4.0, < 1.15.1 | 1.15.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from three key issues: 1) Missing validation of JWT expiration/subject claims in GetTokenClaimsIfValid, 2) Use of a weak static signing key in GetSignedTokenString, and 3) Over-reliance on external token validation in ValidateToken without JWT claim checks. The commits show these were addressed by adding claim validation (ExpiresAt, Subject, SessionId), enforcing secure signing keys, and removing the insufficient ValidateToken method. The CWEs (295/384/613) directly map to these flaws in JWT handling and session management.