CVE-2026-50184: Angular: Request Credential & Cache Policy Stripping in Angular Service Worker

Published Jun 15, 2026
·
Updated

An issue in the @angular/service-worker package compromises the integrity of request-policy enforcement during request reconstruction. When the Angular Service Worker intercepts network requests for matched assets, it reconstructs a new Request object using an internal helper function.

During this reconstruction process, the helper function strips explicit client-defined safety parameters: the credentials configuration (such as credentials: 'omit') and the HTTP cache mode configuration (such as cache: 'no-store'). These are reverted back to standard browser-default parameters (credentials: 'same-origin' and default HTTP cache properties).

This causes the browser to include active credentials (such as cookies or Authorization headers) on outbound requests where the client-side developer explicitly instructed they should be omitted, leading to potential session leaks. Additionally, it causes private or non-cacheable resources to be cached by the service worker's engine, making private page states accessible or persistent inside the client's local cache post-logout.

Impact Web applications registering the @angular/service-worker package are vulnerable to credential exposure or post-logout cache persistence if client-side code relies on fetch calls with explicit safety attributes (such as { credentials: 'omit' } or { cache: 'no-store' }) targeting paths matched by service worker asset groups.

By stripping these safety boundaries, the service worker exposes same-origin cookies and dynamic sensitive data to endpoints that should not receive them, or retains dynamic user sessions in cache storage where logout operations fail to fully evict user records.

Attack Preconditions To successfully exploit this vulnerability, all of the following application states and parameters must concurrently exist: 1. Active Angular Service Worker: The target application uses @angular/service-worker and has an active registration of ngsw-worker.js inside the client's browser context. 2. Asset Group Matching: An assetGroups pattern in ngsw-config.json encompasses the target dynamic routing endpoint. 3. Established User Session: The victim user currently has an active authentication state, such as valid same-origin session cookies or auth headers stored by the browser. 4. Client-Side Safe Fetch Call: The application initiates an explicit fetch request to the route with safety parameters: { credentials: 'omit' } or specific cache control parameters (e.g. { cache: 'no-store' }).

Mitigations & Workarounds If upgrading the @angular/service-worker package is not immediately feasible, developers should implement the following defensive measures: Strict Cookie Configuration: Apply strict flags to session cookies (SameSite=Strict; Secure; HttpOnly) and ensure complete route isolation for credential-guarded secure resources. Exclude Secure Endpoints from SW Config: Ensure that patterns targeting dynamic, secure endpoints are explicitly excluded from automatic asset groups or caching scopes in your ngsw-config.json. Post-Logout Cache Invalidation: Programmatically purge the browser's Cache Storage API entries registered by the Angular Service Worker upon user logout: javascript if ('caches' in window) { caches.keys().then(names => { for (let name of names) { if (name.startsWith('ngsw:')) { caches.delete(name); } } }); } Patches - 22.0.0-rc.2 - 21.2.15 - 20.3.22 - 19.2.23

Other sources

Angular is a development platform for building mobile and desktop web applications using TypeScript/JavaScript and other languages. Prior to 22.0.0-rc.2, 21.2.15, 20.3.22, and 19.2.23, an issue in the @angular/service-worker package compromises the integrity of request-policy enforcement during request reconstruction. When the Angular Service Worker intercepts network requests for matched assets, it reconstructs a new Request object using an internal helper function. During this reconstruction process, the helper function strips explicit client-defined safety parameters: the credentials configuration (such as credentials: 'omit') and the HTTP cache mode configuration (such as cache: 'no-store'). These are reverted back to standard browser-default parameters (credentials: 'same-origin' and default HTTP cache properties). This causes the browser to include active credentials (such as cookies or Authorization headers) on outbound requests where the client-side developer explicitly instructed they should be omitted, leading to potential session leaks. Additionally, it causes private or non-cacheable resources to be cached by the service worker's engine, making private page states accessible or persistent inside the client's local cache post-logout. This vulnerability is fixed in 22.0.0-rc.2, 21.2.15, 20.3.22, and 19.2.23.

MITRE

Affected Software

24 affected componentsFixes available
npm/@angular/service-worker<=18.2.14
npm/@angular/service-worker>=19.0.0-next.0<19.2.23
19.2.23
npm/@angular/service-worker>=20.0.0-next.0<20.3.22
20.3.22
npm/@angular/service-worker>=21.0.0-next.0<21.2.15
21.2.15
npm/@angular/service-worker>=22.0.0-next.0<22.0.0-rc.2
22.0.0-rc.2
angular Angular Node.js<=18.2.14
angular Angular Node.js>=19.0.0<19.2.23
angular Angular Node.js>=20.0.0<20.3.22
angular Angular Node.js>=21.0.0<21.2.15
angular Angular Node.js=22.0.0-next0
angular Angular Node.js=22.0.0-next1
angular Angular Node.js=22.0.0-next10
angular Angular Node.js=22.0.0-next11
angular Angular Node.js=22.0.0-next12
angular Angular Node.js=22.0.0-next2
angular Angular Node.js=22.0.0-next3
angular Angular Node.js=22.0.0-next4
angular Angular Node.js=22.0.0-next5
angular Angular Node.js=22.0.0-next6
angular Angular Node.js=22.0.0-next7
angular Angular Node.js=22.0.0-next8
angular Angular Node.js=22.0.0-next9
angular Angular Node.js=22.0.0-rc0
angular Angular Node.js=22.0.0-rc1

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/@angular/service-worker to a version that resolves this vulnerability.

    Fixed in 19.2.23
  2. Upgrade

    Upgrade npm/@angular/service-worker to a version that resolves this vulnerability.

    Fixed in 20.3.22
  3. Upgrade

    Upgrade npm/@angular/service-worker to a version that resolves this vulnerability.

    Fixed in 21.2.15
  4. Upgrade

    Upgrade npm/@angular/service-worker to a version that resolves this vulnerability.

    Fixed in 22.0.0-rc.2
  5. Upgrade

    Upgrade @angular/service-worker to a version that resolves this vulnerability.

    Fixed in 22.0.0-rc.2
  6. Upgrade

    Upgrade @angular/service-worker to a version that resolves this vulnerability.

    Fixed in 21.2.15
  7. Upgrade

    Upgrade @angular/service-worker to a version that resolves this vulnerability.

    Fixed in 20.3.22
  8. Upgrade

    Upgrade @angular/service-worker to a version that resolves this vulnerability.

    Fixed in 19.2.23
  9. Configuration

    In ngsw-config.json, ensure that assetGroups patterns targeting dynamic, secure endpoints are explicitly excluded from automatic asset groups or caching scopes to avoid service-worker caching/handling of those routes.

    ngsw-config.json (Angular Service Worker) assetGroups = explicitly exclude patterns targeting dynamic, secure endpoints from automatic asset groups or caching scopes
  10. Configuration

    If upgrading @angular/service-worker is not immediately feasible (affected versions prior to 22.0.0-rc.2, 21.2.15, 20.3.22, and 19.2.23), avoid relying on fetch calls that specify explicit safety attributes like `{ credentials: 'omit' }` and `{ cache: 'no-store' }` for paths matched by service worker assetGroups, since the service worker may strip these and reconstruct requests with `credentials: 'same-origin'` and default HTTP cache properties.

    Application fetch calls (client-side) fetch Request safety options = omit explicit credentials/caching safety parameters; use browser-default behavior (credentials:'same-origin' and default cache properties)
  11. Configuration

    Apply strict flags to session cookies: `SameSite=Strict; Secure; HttpOnly`, and ensure complete route isolation for credential-guarded secure resources to reduce risk of session exposure.

    Session cookie configuration SameSite/Secure/HttpOnly flags = SameSite=Strict; Secure; HttpOnly
  12. Compensating control

    Ensure complete route isolation for credential-guarded secure resources (in addition to strict cookie flags) so cached or reconstructed requests cannot access private authenticated content after logout.

  13. Operational

    On user logout, programmatically purge Angular Service Worker Cache Storage entries created/managed by the service worker: delete relevant entries (e.g., iterate caches.keys() and caches.delete(name) for cache names that start with 'ngsw:'), so private/non-cacheable resources do not persist post-logout.

Event History

Jun 15, 2026
Advisory Published
via GitHub·05:13 PM
Data Sourced
via GitHub·05:13 PM
DescriptionWeaknessAffected Software
Jun 22, 2026
CVE Published
via MITRE·03:42 PM
Data Sourced
via MITRE·03:42 PM
DescriptionWeakness
Data Sourced
via NVD·06:16 PM
RemedyDescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-50184?

The severity of CVE-2026-50184 is classified as medium with a CVSS score of 5.7.

2

How do I fix CVE-2026-50184?

To mitigate CVE-2026-50184, update the `@angular/service-worker` package to the latest version where the vulnerability has been addressed.

3

What type of vulnerability is CVE-2026-50184?

CVE-2026-50184 is categorized as an information leak due to improper request credential and cache policy handling.

4

Which software is affected by CVE-2026-50184?

CVE-2026-50184 affects the `@angular/service-worker` package used in Angular applications.

5

When was CVE-2026-50184 published?

CVE-2026-50184 was published on June 15, 2026.

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