The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-26309

CVE-2026-26309: Envoyproxy Envoy Buffer Overflow Flaw

CVE-2026-26309 is a buffer overflow vulnerability in Envoyproxy Envoy caused by an off-by-one write that corrupts string null-termination. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-26309 Overview

CVE-2026-26309 is an off-by-one write vulnerability affecting Envoy, a high-performance edge/middle/service proxy widely used in cloud-native environments and service mesh architectures. The vulnerability exists in the Envoy::JsonEscaper::escapeString() function, where an off-by-one write can corrupt std::string null-termination. This memory corruption issue can lead to undefined behavior, potentially resulting in application crashes or out-of-bounds reads when the corrupted string is subsequently treated as a C-string.

Critical Impact

This off-by-one vulnerability can cause service disruptions through crashes and may expose sensitive memory contents via out-of-bounds reads in Envoy proxy deployments.

Affected Products

  • Envoy versions prior to 1.37.1
  • Envoy versions prior to 1.36.5
  • Envoy versions prior to 1.35.8
  • Envoy versions prior to 1.34.13
  • Envoy version 1.37.0

Discovery Timeline

  • 2026-03-10 - CVE-2026-26309 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-26309

Vulnerability Analysis

This vulnerability is classified as CWE-193 (Off-by-one Error), a common memory corruption vulnerability where a loop iterates one time too many or too few, or where an array index is off by one. In the context of Envoy's JsonEscaper::escapeString() function, this off-by-one write corrupts the null-termination byte of a std::string object.

When processing JSON data that requires string escaping, the function incorrectly calculates buffer boundaries, writing one byte beyond the intended location. This corrupts the null terminator that marks the end of the string in C-string operations. The immediate consequence is undefined behavior, but practical exploitation scenarios include denial of service through crashes and potential information disclosure through subsequent out-of-bounds memory reads.

The attack can be triggered remotely over the network without requiring authentication or user interaction, making it particularly concerning for internet-facing Envoy deployments handling untrusted JSON input.

Root Cause

The root cause lies in improper boundary calculation within the Envoy::JsonEscaper::escapeString() function. When escaping special characters in JSON strings, the function writes beyond the allocated buffer by exactly one byte due to an incorrect loop termination condition or buffer size calculation. This one-byte overflow corrupts the null terminator of the std::string, causing subsequent C-string operations to read past the intended string boundary.

Attack Vector

The vulnerability is exploitable via network-based attacks. An attacker can send specially crafted JSON input to an Envoy proxy that triggers the vulnerable code path. When escapeString() processes this malicious input, the off-by-one write occurs, corrupting memory. The attack does not require authentication or special privileges, and no user interaction is needed.

The exploitation scenario involves:

  1. Attacker sends crafted JSON payload to Envoy proxy
  2. Envoy processes the JSON and invokes escapeString() on attacker-controlled data
  3. Off-by-one write corrupts the std::string null terminator
  4. Subsequent operations treating the string as a C-string cause crashes or out-of-bounds reads

The vulnerability mechanism involves improper boundary handling in the JSON escaping function. When processing strings containing characters that require escaping, the function miscalculates the output buffer size, leading to a single byte overwrite beyond the intended buffer boundary. For detailed technical analysis, see the Envoy Security Advisory.

Detection Methods for CVE-2026-26309

Indicators of Compromise

  • Unexpected Envoy proxy crashes or service restarts, particularly when processing JSON payloads
  • Segmentation fault or memory corruption errors in Envoy logs
  • Anomalous JSON requests with unusual character sequences or escape patterns
  • Memory access violations reported in system logs related to Envoy processes

Detection Strategies

  • Monitor Envoy proxy logs for crash events and memory-related errors during JSON processing operations
  • Implement network traffic analysis to detect anomalous JSON payloads targeting Envoy endpoints
  • Deploy application-level monitoring to track unexpected process terminations in Envoy deployments
  • Use memory sanitizers (AddressSanitizer) in development/staging environments to detect off-by-one writes

Monitoring Recommendations

  • Enable verbose logging on Envoy proxies to capture detailed error information during JSON parsing
  • Implement automated alerting for Envoy service disruptions or unexpected restarts
  • Monitor system-level metrics for abnormal memory usage patterns in Envoy processes
  • Establish baseline traffic patterns and alert on deviations in JSON payload characteristics

How to Mitigate CVE-2026-26309

Immediate Actions Required

  • Upgrade Envoy to patched versions: 1.37.1, 1.36.5, 1.35.8, or 1.34.13 immediately
  • Audit current Envoy deployments to identify all instances running vulnerable versions
  • Review network architecture to identify internet-facing Envoy proxies at highest risk
  • Implement additional input validation for JSON payloads at upstream load balancers if immediate patching is not possible

Patch Information

Envoyproxy has released security patches addressing this vulnerability. The fixed versions are:

BranchFixed Version
1.37.x1.37.1
1.36.x1.36.5
1.35.x1.35.8
1.34.x1.34.13

For complete patch details, review the GitHub Security Advisory GHSA-56cj-wgg3-x943.

Workarounds

  • Deploy a Web Application Firewall (WAF) in front of Envoy to filter potentially malicious JSON payloads
  • Implement rate limiting on endpoints that process JSON to reduce attack surface
  • Use network segmentation to limit exposure of vulnerable Envoy instances from untrusted networks
  • Consider temporarily disabling JSON processing features if not critical to operations while awaiting patch deployment
bash
# Example: Upgrade Envoy using Helm (if deployed in Kubernetes)
helm repo update
helm upgrade envoy envoyproxy/envoy --version 1.37.1

# Verify running version after upgrade
envoy --version

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechEnvoy

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.00%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-193
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-62409: Envoyproxy Envoy Buffer Overflow Flaw

  • CVE-2026-26308: Envoyproxy Envoy Auth Bypass Vulnerability

  • CVE-2026-22771: Envoy Gateway Information Disclosure Flaw

  • CVE-2024-30255: Envoyproxy Envoy DoS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English