CVE-2023-34242: Cilium vulnerable to information leakage via incorrect ReferenceGrant handling
3.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.15542%
CWE
Published
6/16/2023
Updated
11/8/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:A/AC:L/PR:H/UI:N/S:C/C:L/I:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| github.com/cilium/cilium | go | >= 1.13.0, < 1.13.4 | 1.13.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper namespace validation when handling ReferenceGrants in the Gateway API implementation. Key indicators:
- The CVE description explicitly mentions missing namespace checks on ReferenceGrant creation
- Gateway API's security model requires ReferenceGrants to be namespace-scoped protections
- The fix version (1.13.4) likely added namespace validation in ReferenceGrant handling logic
- The affected functionality relates to cross-namespace secret/service access authorization
While exact code diffs aren't available, the pattern matches common Kubernetes admission control issues where namespace-boundary checks are missing in reference validation functions. The high-confidence entry point is the ReferenceGrant controller's handling logic, while the admission webhook validation is a secondary potential location.