Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2021-29492

CVE-2021-29492: Envoyproxy Envoy Auth Bypass Vulnerability

CVE-2021-29492 is an authentication bypass flaw in Envoyproxy Envoy that allows attackers to evade access controls using escaped slash sequences. This article covers technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-29492 Overview

CVE-2021-29492 is a path traversal vulnerability in Envoy, a cloud-native edge/middle/service proxy. The vulnerability exists because Envoy does not decode escaped slash sequences %2F and %5C in HTTP URL paths in versions 1.18.2 and earlier. A remote attacker can craft a path with escaped slashes, such as /something%2F..%2Fadmin, to bypass access control mechanisms that block paths like /admin. When backend servers decode these slash sequences and normalize the path, attackers can gain unauthorized access beyond what is permitted by the configured access control policy.

Critical Impact

This vulnerability enables privilege escalation when using RBAC or JWT filters with URL path-based enforcement. Organizations with backend servers that interpret %2F and / or %5C and \\ interchangeably are at risk of unauthorized access to protected resources.

Affected Products

  • Envoy versions prior to 1.18.3
  • Envoy versions prior to 1.17.3
  • Envoy versions prior to 1.16.4
  • Envoy versions prior to 1.15.5

Discovery Timeline

  • 2021-05-28 - CVE-2021-29492 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-29492

Vulnerability Analysis

This path traversal vulnerability (CWE-22) stems from a discrepancy in how Envoy and backend servers handle URL-encoded characters. The vulnerability is network-accessible without requiring authentication or user interaction, and it can affect resources beyond the vulnerable component's security scope.

When Envoy receives an HTTP request, it evaluates access control rules against the URL path. However, Envoy's path matching logic does not decode percent-encoded slash characters (%2F for / and %5C for \) before evaluation. This creates a security gap when backend servers do decode these sequences, effectively allowing attackers to bypass Envoy's access control layer.

The impact is particularly severe in environments using Role-Based Access Control (RBAC) or JWT filters for path-based authorization. An attacker can craft requests that appear benign to Envoy's access control evaluation but resolve to restricted paths when processed by the backend.

Root Cause

The root cause is improper input validation in Envoy's URL path handling logic. Envoy fails to normalize URL-encoded slash sequences before applying access control rules. This inconsistency between Envoy's path evaluation and backend server path interpretation creates a security bypass condition.

The vulnerability specifically occurs because:

  1. Envoy evaluates access control rules on the raw, encoded URL path
  2. Backend servers decode %2F to / and %5C to \
  3. The decoded path may traverse directory boundaries or access restricted resources

Attack Vector

The attack vector involves crafting HTTP requests with URL-encoded path traversal sequences. An attacker sends requests through Envoy with paths containing %2F (encoded forward slash) or %5C (encoded backslash) characters embedded within path traversal patterns.

For example, if Envoy is configured to block access to /admin, an attacker could send a request to /something%2F..%2Fadmin. Envoy's access control check sees this as a request to a path starting with /something, which may be permitted. However, when the backend server decodes the URL, it interprets the path as /something/../admin, which normalizes to /admin, granting the attacker access to the protected resource.

This attack requires no authentication and can be executed remotely over the network. The impact extends to confidentiality, integrity, and availability of resources protected by Envoy's access control mechanisms.

Detection Methods for CVE-2021-29492

Indicators of Compromise

  • HTTP requests containing %2F or %5C sequences followed by .. patterns in URL paths
  • Unusual access to administrative or restricted endpoints from unexpected source paths
  • Log entries showing path-based access control decisions that don't match actual backend resource access
  • Multiple requests probing various encoded path combinations targeting sensitive endpoints

Detection Strategies

  • Implement web application firewall rules to detect and alert on URL-encoded path traversal sequences like %2F..%2F or %5C..%5C
  • Enable detailed access logging on both Envoy and backend servers to correlate requested paths with actual resource access
  • Deploy intrusion detection rules that identify path traversal attempts using percent-encoded characters
  • Monitor for authentication bypass attempts by comparing Envoy access decisions against backend access logs

Monitoring Recommendations

  • Configure Envoy access logs to capture full request URIs including encoded characters for forensic analysis
  • Establish baseline metrics for access to sensitive endpoints and alert on anomalous access patterns
  • Implement real-time log correlation between Envoy and backend servers to detect path interpretation discrepancies
  • Set up alerts for requests containing suspicious URL encoding patterns targeting known restricted paths

How to Mitigate CVE-2021-29492

Immediate Actions Required

  • Upgrade Envoy to patched versions: 1.18.3, 1.17.3, 1.16.4, or 1.15.5 depending on your current version branch
  • Enable the new path normalization option to decode escaped slash characters introduced in the patched versions
  • Audit current access control configurations to identify paths that may be vulnerable to bypass
  • Review backend server configurations to understand how they handle URL-encoded characters

Patch Information

Patches are available in Envoy versions 1.18.3, 1.17.3, 1.16.4, and 1.15.5. These patches introduce a new path normalization option that decodes escaped slash characters before access control evaluation. Refer to the Envoy Security Advisory GHSA-4987-27fx-x6cf for detailed patch information and upgrade instructions.

Workarounds

  • If patching is not immediately possible, reconfigure backend servers to not treat %2F and / or %5C and \ interchangeably
  • Implement additional access control at the backend server level that validates decoded paths
  • Deploy a web application firewall in front of Envoy to normalize URL encoding before requests reach Envoy
  • Review and strengthen path-based access control rules to account for potential encoding variations
bash
# Example: Enable path normalization in Envoy configuration
# Add to route configuration to enable escaped slash decoding
# Consult Envoy documentation for your specific version
normalize_path: true
merge_slashes: true
path_with_escaped_slashes_action: UNESCAPE_AND_FORWARD

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechEnvoyproxy

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability7.42%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26310: Envoyproxy Envoy DOS Vulnerability

  • CVE-2026-26311: Envoyproxy Envoy Use-After-Free Flaw

  • CVE-2026-26330: Envoyproxy Envoy DOS Vulnerability

  • CVE-2024-27919: Envoyproxy Envoy DoS Vulnerability
Default Legacy - Prefooter | 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