Loading...
Skip to main content

CVE-2026-45573

MEDIUM

Decidim: Push subscriptions can be abused for server-side requests

Published July 13, 2026Updated July 13, 2026Source: osv

Summary

## Description The push-subscription endpoint stores an attacker-controlled delivery URL, and the notification send path becomes an outbound-request sink when VAPID delivery is enabled. The practical result is an authenticated, stored, mostly blind SSRF primitive to arbitrary HTTPS endpoints reachable from the app server. ## Technical description When VAPID delivery is enabled, the notification subscription flow stores the client-supplied push endpoint without checking that it belongs to an approved push service. The send path later passes that stored URL to `WebPush.payload_send`, turning the subscription into an attacker-controlled outbound request destination. This is the source-to-sink chain: 1. Source: attacker-controlled `subscription.endpoint` in the JSON body posted to `POST /notifications_subscriptions`. 2. Persistence: `params[:endpoint]` is stored under `user.notification_settings["subscriptions"]`. 3. Retrieval: `user.notifications_subscriptions.values` returns that stored endpoint later. 4. Sink: `build_payload` sets `endpoint: subscription["endpoint"]`. 5. Outbound request: `WebPush.payload_send(**payload)` uses the attacker-supplied endpoint as the destination. One spec asserts that the endpoint is persisted exactly as supplied: ```ruby # decidim-core/spec/services/decidim/notifications_subscriptions_persistor_spec.rb expect(user.notifications_subscriptions["auth_code_121"]["endpoint"]).to eq(params[:endpoint]) ``` Another spec asserts that `SendPushNotification` passes the stored endpoint into `WebPush.payload_send`: ```ruby # decidim-core/spec/services/decidim/send_push_notification_spec.rb first_notification_payload = { message:, endpoint: subscriptions["auth_key_1"]["endpoint"], p256dh: subscriptions["auth_key_1"]["p256dh"], auth: subscriptions["auth_key_1"]["auth"], vapid: a_hash_including(...) } expect(WebPush).to receive(:payload_send).with(first_notification_payload) ``` ### Impact - In a configured deployment, an authenticated user can register an attacker-controlled or otherwise unauthorized HTTPS URL. - The server then sends outbound `POST` requests there whenever a notification is pushed. - This is a stored, mostly blind SSRF primitive: useful for outbound interaction with attacker infrastructure and, where routable, internal HTTPS services. - Notification metadata is disclosed to the supplied endpoint through the encrypted web push request path. ### Patches See https://github.com/decidim/decidim/pull/16714. ### Workarounds Disable the push notifications feature by removing the VAPID keys in the server. ### Resource SSRF ### Credits This issue was discovered in a security audit organized by the [Decidim Association](https://decidim.org) and made by [Radically Open Security](https://www.radicallyopensecurity.com/) against Decidim financed by [NGI](https://ngi.eu/).

Remediation

Upgrade to the fixed version using your package manager.

Bundler
Update decidim-core to 0.31.5 or later
gem install decidim-core -v 0.31.5
Bundler
Update decidim-core to 0.32.0 or later
gem install decidim-core -v 0.32.0
Bundler
Update decidim-core to 0.30.9 or later
gem install decidim-core -v 0.30.9

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (3)

PackageEcosystemAffectedFixed In
decidim-core
rubygems
0.31.0, 0.31.0.rc1, 0.31.0.rc2, 0.31.1 (+3 more)0.31.5
decidim-core
rubygems
0.32.0.rc1, 0.32.0.rc2, 0.32.0.rc30.32.0
decidim-core
rubygems
0.0.1, 0.0.1.alpha1, 0.0.1.alpha2, 0.0.1.alpha3 (+158 more)0.30.9

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

  • CWE-918
    Server-Side Request Forgery (SSRF)MITRE

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 6.4 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Changed
Confidentiality
Low
Integrity
Low
Availability
None

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N

Frequently Asked Questions

What is CVE-2026-45573?
Decidim: Push subscriptions can be abused for server-side requests This vulnerability has been assigned a severity rating of MEDIUM (CVSS score: 6.4/10).
How do I check if my project is affected by CVE-2026-45573?
CVE-2026-45573 affects decidim-core. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2026-45573 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
6.4

Exploitation requires specific conditions or has limited impact. Remediate within weeks.

Also Known As

GHSA-2g9c-vf8h-prxx

Related CVEs

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies