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
    • 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-2026-44437

CVE-2026-44437: Angular SSR Path Traversal Vulnerability

CVE-2026-44437 is a path traversal vulnerability in Angular SSR that allows attackers to bypass security filters using URL-encoded sequences. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 14, 2026

CVE-2026-44437 Overview

CVE-2026-44437 is a path traversal vulnerability [CWE-22] in Angular Server-Side Rendering (SSR). The flaw exists in the X-Forwarded-Prefix header processing logic. The internal validation routine fails to account for URL-encoded characters, specifically the encoded dot sequence %2e%2e. Attackers can inject encoded traversal sequences that bypass security filters and are subsequently decoded by application logic. The vulnerability affects Angular SSR versions from 19.0.0-next.0 up to (but not including) 19.2.25, 20.3.25, 21.2.9, and 22.0.0-next.7. Exploitation requires the application to trust proxy headers and operate behind a proxy that forwards X-Forwarded-Prefix without sanitization.

Critical Impact

Remote attackers can bypass path-based security filters using URL-encoded traversal sequences, enabling redirection or path manipulation in trusted Angular SSR deployments.

Affected Products

  • Angular SSR 19.0.0-next.0 through versions prior to 19.2.25
  • Angular SSR 20.x versions prior to 20.3.25
  • Angular SSR 21.x versions prior to 21.2.9 and 22.0.0-next.x prior to 22.0.0-next.7

Discovery Timeline

  • 2026-05-13 - CVE-2026-44437 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44437

Vulnerability Analysis

The vulnerability resides in Angular SSR's request preprocessing logic for the X-Forwarded-Prefix header. This header communicates a URL prefix added by an upstream proxy, allowing the SSR runtime to construct correct base URLs for rendered responses. Angular SSR validates the header value to reject traversal characters such as ... However, the validation operates on the raw header string before URL decoding. Attackers can submit the encoded equivalent %2e%2e, which passes the filter and is later decoded into .. when used by downstream routing or URL-construction logic.

Root Cause

The root cause is incomplete input canonicalization. Validation logic compares against the literal ASCII representation of traversal sequences, while the decoded form is later consumed by application logic. This mismatch between validation context and consumption context allows attacker-controlled traversal payloads to slip through the filter unchanged.

Attack Vector

The attack is exploitable over the network without authentication or user interaction. An attacker sends an HTTP request containing an X-Forwarded-Prefix header with a payload such as /%2e%2e/evil. The Angular SSR application must be configured to trust proxy headers, and the fronting proxy must forward the header verbatim without sanitization. Once accepted, the decoded value influences URL generation, redirects, or path-based access decisions within the rendered application, producing low-impact integrity and confidentiality effects on the SSR component and adjacent systems.

No verified public exploit code is available. Refer to the GitHub Security Advisory for further technical detail.

Detection Methods for CVE-2026-44437

Indicators of Compromise

  • HTTP request logs containing X-Forwarded-Prefix header values with URL-encoded dot sequences such as %2e%2e, %2E%2E, or mixed-case variants.
  • Application logs showing decoded .. segments in base-URL or prefix variables during SSR rendering.
  • Anomalous redirect responses where the Location header includes attacker-controlled prefixes.

Detection Strategies

  • Inspect reverse proxy and load balancer access logs for inbound X-Forwarded-Prefix headers containing percent-encoded characters.
  • Correlate SSR error or warning events with requests carrying non-standard prefix values.
  • Deploy WAF signatures that decode header values before applying traversal-pattern matching.

Monitoring Recommendations

  • Alert on any X-Forwarded-Prefix header originating from untrusted upstream sources or external clients.
  • Track Angular SSR process versions across fleet inventory to confirm patched releases are deployed.
  • Monitor outbound redirects and rendered HTML for unexpected base-href values that deviate from the application's known prefixes.

How to Mitigate CVE-2026-44437

Immediate Actions Required

  • Upgrade Angular SSR to 19.2.25, 20.3.25, 21.2.9, or 22.0.0-next.7 depending on the deployed release line.
  • Audit proxy configurations to confirm whether X-Forwarded-Prefix is trusted, and disable trust where the upstream proxy does not sanitize the header.
  • Review recent access logs for encoded traversal sequences in the affected header.

Patch Information

The Angular team fixed the vulnerability in releases 19.2.25, 20.3.25, 21.2.9, and 22.0.0-next.7. The patch normalizes header input prior to validation, ensuring URL-encoded traversal sequences are rejected. See the GitHub Pull Request for the code change and the GitHub Security Advisory for vendor guidance.

Workarounds

  • Strip or overwrite the X-Forwarded-Prefix header at the edge proxy before requests reach Angular SSR.
  • Configure the upstream proxy to URL-decode and validate header values, rejecting any containing .. after decoding.
  • Disable proxy header trust in the SSR configuration if the prefix functionality is not required.
bash
# Example NGINX configuration to strip the header at the edge
location / {
    proxy_set_header X-Forwarded-Prefix "";
    proxy_pass http://angular_ssr_upstream;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAngular

  • SeverityMEDIUM

  • CVSS Score6.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-62427: Angular SSR SSRF Vulnerability

  • CVE-2026-33397: Angular SSR Open Redirect Vulnerability

  • CVE-2026-32635: Angular Framework XSS Vulnerability

  • CVE-2026-27970: Angular i18n Pipeline XSS 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