CVE-2026-54267: Angular Client Hydration DOM Clobbering & Response-Cache Poisoning
Angular is a development platform for building mobile and desktop web applications using TypeScript/JavaScript and other languages. Prior to 22.0.1, 21.2.17, and 20.3.25, to optimize client-side bootstrap in Server-Side Rendered (SSR) environments, Angular supports Hydration via provideClientHydration(). During SSR, Angular serializes the application's runtime state (such as cached HttpClient responses) and outputs it into the HTML stream as a <script> tag with a predictable identifier. During client bootstrap, Angular recovers this state by looking up the element via document.getElementById('ng-state') and parsing its text content. Because the DOM element lookup for the state container is predictable and relies solely on the ID selector (ng-state), it is susceptible to DOM Clobbering. If the application binds untrusted user input or CMS content to element properties such as id (e.g., <div [id]="userInput"> or <a id="ng-state">) before the genuine <script> tag is parsed by the browser, the attacker-controlled element takes precedence in the DOM lookup. During hydration, when Angular calls document.getElementById('ng-state'), the browser returns the attacker's clobbered element. Angular then attempts to parse the text content or attributes of this clobbered element as JSON. This vulnerability is fixed in 22.0.1, 21.2.17, and 20.3.25.
Other sources
To optimize client-side bootstrap in Server-Side Rendered (SSR) environments, Angular supports Hydration via provideClientHydration(). During SSR, Angular serializes the application's runtime state (such as cached HttpClient responses) and outputs it into the HTML stream as a <script> tag with a predictable identifier:
html <script type="application/json" id="ng-state"> {"some-api-url": {"body": ...}} </script>
During client bootstrap, Angular recovers this state by looking up the element via document.getElementById('ng-state') and parsing its text content.
Because the DOM element lookup for the state container is predictable and relies solely on the ID selector (ng-state), it is susceptible to DOM Clobbering.
If the application binds untrusted user input or CMS content to element properties such as id (e.g., <div [id]="userInput"> or <a id="ng-state">) before the genuine <script> tag is parsed by the browser, the attacker-controlled element takes precedence in the DOM lookup.
During hydration, when Angular calls document.getElementById('ng-state'), the browser returns the attacker's clobbered element. Angular then attempts to parse the text content or attributes of this clobbered element as JSON.
Impact
By clobbering the state element, the attacker can inject a custom JSON payload into Angular's TransferState cache. The most critical exploitation vector is poisoning the HTTP Transfer Cache.
1. The attacker injects a clobbered ng-state element containing custom JSON. 2. The JSON maps a key (representing a target API endpoint URL) to a malicious payload of the attacker's choice. 3. During client-side initialization, Angular's HttpClient checks TransferState before making requests. Finding the poisoned key, HttpClient returns the forged response instantly instead of requesting the genuine backend API.
Depending on how the application processes and renders the affected API response, this can lead to:
DOM-based Cross-Site Scripting (XSS) if poisoned fields are rendered using unsafe bindings. Privilege Escalation by spoofing user info or session details retrieved from poisoned API payloads. UI Hijacking and redirection by spoofing configuration endpoints.
Patched Versions
22.0.1 21.2.17 20.3.25
Workarounds
If you cannot immediately update to a patched Angular version, apply the following workarounds:
A. Avoid Dynamic/User-Controlled IDs
Avoid binding raw user-supplied values or dynamic CMS IDs directly to element attributes. If dynamic IDs are required, sanitize them or prepend a static safe prefix:
html <!-- Vulnerable Pattern --> <div [id]="userControlledInput">...</div>
<!-- Mitigated Pattern --> <div [id]="'safe-prefix-' + userControlledInput">...</div>
B. Configure a Custom Application ID
Declaring a unique, non-predictable APPID changes the ID suffix of the state element, making it harder for attackers to predict and target:
ts // app.config.ts
import { APPID } from '@angular/core'; import { provideClientHydration } from '@angular/platform-browser';
export const appConfig = { providers: [ { provide: APPID, useValue: 'unique-obfuscated-app-id' }, provideClientHydration() ] };
This changes the state element lookup ID from ng-state to unique-obfuscated-app-id-state.
— GitHub
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/@angular/coreto a version that resolves this vulnerability.Fixed in 20.3.25 - Upgrade
Upgrade
npm/@angular/coreto a version that resolves this vulnerability.Fixed in 21.2.17 - Upgrade
Upgrade
npm/@angular/coreto a version that resolves this vulnerability.Fixed in 22.0.1 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 20.3.25 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 21.2.17 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 22.0.1 - Configuration
Declare a unique, non-predictable Angular APP_ID so the TransferState state element lookup ID changes from 'ng-state' to 'unique-obfuscated-app-id-state' (example shown: provide APP_ID with useValue 'unique-obfuscated-app-id').
Angular (SSR hydration) APP_ID = unique-obfuscated-app-id
Event History
Frequently Asked Questions
What is the severity of CVE-2026-54267?
CVE-2026-54267 has a risk rating of 55.
How do I fix CVE-2026-54267?
To mitigate CVE-2026-54267, ensure to update to the latest version of @angular/core that addresses this vulnerability.
What impact does CVE-2026-54267 have on my application?
CVE-2026-54267 can potentially allow cross-site scripting (XSS) attacks in server-side rendered Angular applications.
What does hydration refer to in the context of CVE-2026-54267?
In the context of CVE-2026-54267, hydration is the process of optimizing client-side bootstrap in server-side rendered Angular applications.
What software is affected by CVE-2026-54267?
CVE-2026-54267 affects the npm package @angular/core.