CVE-2026-54267: Angular Client Hydration DOM Clobbering & Response-Cache Poisoning

Published Jun 15, 2026
·
Updated

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

8 affected componentsFixes available
npm/@angular/core<=19.2.25
npm/@angular/core>=20.0.0-next.0<20.3.25
20.3.25
npm/@angular/core>=21.0.0-next.0<21.2.17
21.2.17
npm/@angular/core>=22.0.0-next.0<22.0.1
22.0.1
angular Angular Node.js<=19.2.25
angular Angular Node.js>=20.0.0<20.3.25
angular Angular Node.js>=21.0.0<21.2.17
angular Angular Node.js>=22.0.0<22.0.1

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/@angular/core to a version that resolves this vulnerability.

    Fixed in 20.3.25
  2. Upgrade

    Upgrade npm/@angular/core to a version that resolves this vulnerability.

    Fixed in 21.2.17
  3. Upgrade

    Upgrade npm/@angular/core to a version that resolves this vulnerability.

    Fixed in 22.0.1
  4. Upgrade

    Upgrade to a fixed release to a version that resolves this vulnerability.

    Fixed in 20.3.25
  5. Upgrade

    Upgrade to a fixed release to a version that resolves this vulnerability.

    Fixed in 21.2.17
  6. Upgrade

    Upgrade to a fixed release to a version that resolves this vulnerability.

    Fixed in 22.0.1
  7. 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

Jun 15, 2026
Advisory Published
via GitHub·03:16 PM
Data Sourced
via GitHub·03:16 PM
DescriptionWeaknessAffected Software
Jun 22, 2026
CVE Published
via MITRE·03:30 PM
Data Sourced
via MITRE·03:30 PM
DescriptionWeakness
Data Sourced
via NVD·04:16 PM
RemedyDescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2026-54267?

CVE-2026-54267 has a risk rating of 55.

2

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.

3

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.

4

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.

5

What software is affected by CVE-2026-54267?

CVE-2026-54267 affects the npm package @angular/core.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203