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-32635

CVE-2026-32635: Angular Framework XSS Vulnerability

CVE-2026-32635 is a Cross-Site Scripting vulnerability in Angular that bypasses sanitization when using internationalized attributes with untrusted data. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32635 Overview

A Cross-Site Scripting (XSS) vulnerability has been identified in the Angular runtime and compiler that allows attackers to bypass Angular's built-in sanitization mechanism. The vulnerability occurs when applications use security-sensitive attributes (such as href on anchor tags) together with Angular's internationalization (i18n) feature. By enabling internationalization for sensitive attributes using the i18n-<attribute> naming convention combined with data binding to untrusted user-generated content, attackers can inject malicious scripts into the application.

Critical Impact

This vulnerability enables attackers to execute arbitrary JavaScript in the context of affected Angular applications, potentially leading to session hijacking, credential theft, and unauthorized actions on behalf of authenticated users.

Affected Products

  • Angular versions prior to 22.0.0-next.3
  • Angular versions prior to 21.2.4
  • Angular versions prior to 20.3.18
  • Angular versions prior to 19.2.20

Discovery Timeline

  • 2026-03-16 - CVE CVE-2026-32635 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2026-32635

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Cross-Site Scripting). The flaw resides in how Angular handles the intersection of its security-sensitive attribute sanitization and its internationalization (i18n) system. Angular normally sanitizes potentially dangerous attributes like href, src, and similar properties to prevent injection attacks. However, when developers mark these attributes for internationalization using the i18n-<attribute> directive, the sanitization process is inadvertently bypassed.

The attack requires user interaction and low-privilege access, but can be exploited remotely over the network. When successfully exploited, an attacker can achieve high impact on confidentiality, integrity, and availability within the vulnerable application's context.

Root Cause

The root cause lies in Angular's template compiler and runtime handling of internationalized attributes. When an attribute is marked for internationalization (e.g., i18n-href), the normal sanitization pipeline that would ordinarily inspect and sanitize security-sensitive attributes is bypassed. This creates a gap where untrusted data bound to these internationalized attributes flows directly into the DOM without proper security validation.

Attack Vector

The attack requires an Angular application that:

  1. Uses security-sensitive attributes (like href, src, or action) on HTML elements
  2. Enables internationalization on these attributes using the i18n-<attribute> directive
  3. Binds these attributes to user-controllable data

An attacker can craft malicious input containing JavaScript payloads that, when bound to an internationalized sensitive attribute, execute in the victim's browser context. This is a network-based attack vector requiring some user interaction to trigger the malicious payload.

The vulnerability mechanism involves the internationalization directive creating a path that circumvents Angular's DomSanitizer service. When an attribute like href is marked with i18n-href, the template compiler treats the attribute value as translatable content rather than security-sensitive input, allowing schemes like javascript: to pass through unsanitized. See the GitHub Security Advisory for detailed technical information.

Detection Methods for CVE-2026-32635

Indicators of Compromise

  • Presence of unusual or malicious javascript: URIs in application logs or user input fields
  • Unexpected script execution events in browser developer tools or client-side monitoring
  • Reports of session hijacking or unauthorized actions from authenticated users
  • Detection of encoded payloads in URL parameters or form inputs targeting i18n-enabled attributes

Detection Strategies

  • Audit Angular templates for combinations of i18n-<attribute> directives with security-sensitive attributes (href, src, action, formaction)
  • Implement Content Security Policy (CSP) headers to detect and block inline script execution attempts
  • Deploy web application firewalls (WAF) with rules to identify XSS payload patterns in request parameters
  • Use static code analysis tools to identify potentially vulnerable template patterns

Monitoring Recommendations

  • Enable detailed logging for client-side JavaScript errors and security violations
  • Monitor CSP violation reports for blocked script execution attempts
  • Implement real-time alerting for unusual patterns in user-submitted content containing script tags or JavaScript URIs
  • Track and review any anomalous authentication or session behavior that may indicate successful exploitation

How to Mitigate CVE-2026-32635

Immediate Actions Required

  • Upgrade Angular to one of the patched versions: 22.0.0-next.3, 21.2.4, 20.3.18, or 19.2.20
  • Audit existing codebase for usage of i18n-<attribute> on security-sensitive attributes
  • Remove internationalization directives from security-sensitive attributes until patches are applied
  • Implement strict Content Security Policy headers to reduce the impact of potential XSS attacks

Patch Information

Angular has released security patches addressing this vulnerability across multiple supported versions. The fixes are available in the following releases:

Version BranchPatched Version
Angular 22.x22.0.0-next.3
Angular 21.x21.2.4
Angular 20.x20.3.18
Angular 19.x19.2.20

The patches are documented in Pull Request #67541 and Pull Request #67561. Organizations should update to the appropriate patched version for their Angular version branch.

Workarounds

  • Avoid using i18n-<attribute> directives on security-sensitive attributes (href, src, action, formaction) until patched
  • Manually sanitize user input before binding to any attribute that may be internationalized
  • Use Angular's DomSanitizer service explicitly when handling dynamic URLs or other sensitive values
  • Implement server-side validation and sanitization as a defense-in-depth measure
bash
# Update Angular to patched version using npm
npm update @angular/core @angular/compiler @angular/platform-browser

# Or specify exact patched version (example for 21.x branch)
npm install @angular/core@21.2.4 @angular/compiler@21.2.4 @angular/platform-browser@21.2.4

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechAngular

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Pull Request #67541

  • GitHub Pull Request #67561

  • GitHub Security Advisory GHSA-g93w-mfhg-p222
  • Related CVEs
  • CVE-2026-27970: Angular i18n Pipeline XSS Vulnerability

  • CVE-2026-22610: Angular Template Compiler XSS Vulnerability

  • CVE-2025-66412: Angular Template Compiler XSS Vulnerability

  • CVE-2026-33397: Angular SSR Open Redirect 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