Cyber Resilience

CVE-2025-64527

Memory Safety in Envoyproxy Envoy ≤ 1.33.13

Public PoCMemory Safety
Published
03 December 2025
Modified
05 December 2025
Patch / advisory
CVSS Score v3.1 6.5
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
EPSS Score 0.0051 40th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2025-64527 is a medium-severity NULL Pointer Dereference (CWE-476) vulnerability in Envoyproxy Envoy. Its CVSS base score is 6.5 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Application or System Exploitation (T1499.004); ranked at the 40th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified map to SI-2 (Flaw Remediation) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

Envoy is a high-performance edge/middle/service proxy. In 1.33.12, 1.34.10, 1.35.6, 1.36.2, and earlier, Envoy crashes when JWT authentication is configured with the remote JWKS fetching, allow_missing_or_failed is enabled, multiple JWT tokens are present in the request headers and the JWKS…

more

fetch fails. This is caused by a re-entry bug in the JwksFetcherImpl. When the first token's JWKS fetch fails, onJwksError() callback triggers processing of the second token, which calls fetch() again on the same fetcher object. The original callback's reset() then clears the second fetch's state (receiver_ and request_) which causes a crash when the async HTTP response arrives.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1499.004 Application or System Exploitation Impact
Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users.
Why these techniques?

The vulnerability is a null pointer dereference (CWE-476) triggered during JWT authentication processing when a JWKS fetch fails. This causes a crash (denial of service) in the proxy, which maps to application exhaustion or system exploitation leading to DoS. No direct mappings to code execution, credential access, or other ATT&CK techniques are present.

Confidence: MEDIUM · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-47220Same product: Envoyproxy Envoy
CVE-2024-23327Same product: Envoyproxy Envoy
CVE-2026-47204Same product: Envoyproxy Envoy
CVE-2026-47221Same product: Envoyproxy Envoy
CVE-2024-45809Same product: Envoyproxy Envoy
CVE-2024-53270Same product: Envoyproxy Envoy
CVE-2026-26330Same product: Envoyproxy Envoy
CVE-2024-34364Same product: Envoyproxy Envoy
CVE-2024-32975Same product: Envoyproxy Envoy
CVE-2025-62409Same product: Envoyproxy Envoy

Affected Assets

envoyproxy
envoy
≤ 1.33.13 · 1.34.0 — 1.34.11 · 1.35.0 — 1.35.7

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-2 Flaw Remediation
  • SI-11 Error Handling
  • SI-10 Information Input Validation
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires applying the vendor patch that eliminates the JwksFetcherImpl re-entry bug on JWKS fetch failure.

prevent

Ensures the onJwksError path and subsequent token processing handle the failed fetch without triggering the receiver_/request_ null dereference.

prevent

Validates or limits JWT header tokens before remote JWKS fetch is initiated, reducing the multiple-token re-entry condition.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices (static analysis, code review, safe coding standards) directly prevent NULL dereference bugs during development.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

detects

Security testing can detect NULL dereference defects before release.

prevents

Secure SDLC mandates defensive coding practices that can prevent NULL dereferences.

prevents

Application security requirements can specify input validation and pointer-safety rules.

prevents

Secure architecture principles encourage defensive design that avoids unsafe pointer use.

prevents

Secure coding standards directly require NULL-pointer checks and safe dereference patterns.

References