CVE-2026-48009

MEDIUMPre-NVD 6.86.8
EchelonGraph scoreLOW confidence

This medium-severity CVE scores 6.8 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit probability: 0.0%, top 90% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m, epss
6.8
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: 0%CVSS: 6.8Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

Shopware: Admin Account Takeover via User Recovery Hash Exposure

Summary

A low-privilege admin user with user_recovery:read ACL can take over any admin account. The attacker triggers password recovery for the victim (unauthenticated endpoint), reads the recovery hash from the Admin API search endpoint, then uses the hash to reset the victim's password (another unauthenticated endpoint). The recovery hash — intended to be secret and delivered only via email — is fully readable through the standard entity search API.

OWASP: A01:2021 — Broken Access Control

Root Cause

The user_recovery entity exposes its hash field through the Admin API search endpoint (POST /api/search/user-recovery). The hash field lacks ApiAware(false) or ReadProtection, so any user with user_recovery:read ACL can read it.

The password recovery flow assumes the hash is delivered exclusively via email. The Admin API provides an alternative channel to obtain it, breaking this assumption.

Three endpoints combine to form the attack:

  • POST /api/_action/user/user-recovery — triggers recovery, creates hash in DB (no auth required)
  • POST /api/search/user-recovery — reads the hash (requires only user_recovery:read ACL)
  • PATCH /api/_action/user/user-recovery/password — resets password using hash (no auth required)

Vulnerable code:

  • src/Core/System/User/Recovery/UserRecoveryDefinition.phphash field is ApiAware with no ReadProtection

Impact

  • Full admin account takeover — attacker gains the highest privilege level in the system
  • All admin capabilities — user/role management, system configuration, plugin management, customer data access
  • Cascading compromise — taken-over admin account can be used to pivot to other attacks
  • Low barrieruser_recovery:read is a seemingly harmless permission that grants devastating access

Remediation

Remove the hash field from API responses:

// src/Core/System/User/Recovery/UserRecoveryDefinition.php
(new StringField('hash', 'hash'))
    ->addFlags(new Required(), new ApiAware(false)),

CVSS v3
6.8
EG Score
6.8(low)
EPSS
10.4%
KEV
Not listed

Published

June 4, 2026

Last Modified

June 4, 2026

Vendor Advisories for CVE-2026-48009(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Affected Packages

(2 across 1 ecosystem)
Packagist(2)
PackageVulnerable rangeFixed inDependents
shopware/core6.3.0.0 ... v6.6.9.0 (166 versions)6.6.10.18
shopware/platform6.3.0.0 ... v6.6.9.0 (166 versions)6.6.10.18

Data Freshness Timeline

(refreshed 3× in last 7d / 26× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-11 11:51 UTCEG score recompute
  2. 2026-07-08 09:34 UTCEG score recompute
  3. 2026-07-06 02:48 UTCEG score recompute
  4. 2026-07-03 22:12 UTCEG score recompute
  5. 2026-07-02 22:46 UTCEG score recompute
  6. 2026-07-01 23:13 UTCEG score recompute
  7. 2026-06-30 23:03 UTCEG score recompute
  8. 2026-06-29 23:38 UTCEG score recompute
  9. 2026-06-29 00:07 UTCEG score recompute
  10. 2026-06-28 00:43 UTCEG score recompute
  11. 2026-06-27 01:18 UTCEG score recompute
  12. 2026-06-26 01:20 UTCEG score recompute
  13. 2026-06-25 00:47 UTCEG score recompute
  14. 2026-06-24 01:18 UTCEG score recompute
  15. 2026-06-23 01:54 UTCEG score recompute
  16. 2026-06-19 19:47 UTCEG score recompute
  17. 2026-06-18 14:58 UTCEG score recompute
  18. 2026-06-17 13:43 UTCEG score recompute
  19. 2026-06-16 14:19 UTCEG score recompute
  20. 2026-06-15 14:28 UTCEG score recompute
  21. 2026-06-14 23:18 UTCEPSS rescore
  22. 2026-06-14 14:38 UTCEG score recompute
  23. 2026-06-13 23:00 UTCEPSS rescore
  24. 2026-06-13 15:14 UTCEG score recompute
  25. 2026-06-12 23:12 UTCEPSS rescore
Show 9 more
  1. 2026-06-12 15:49 UTCEG score recompute
  2. 2026-06-11 16:25 UTCEG score recompute
  3. 2026-06-10 16:49 UTCEG score recompute
  4. 2026-06-09 17:26 UTCEG score recompute
  5. 2026-06-08 18:00 UTCEG score recompute
  6. 2026-06-07 18:22 UTCEG score recompute
  7. 2026-06-06 18:58 UTCEG score recompute
  8. 2026-06-05 19:34 UTCEG score recompute
  9. 2026-06-04 20:10 UTCEG score recompute

Frequently asked(5)

What is CVE-2026-48009?
CVE-2026-48009 is a medium vulnerability published on June 4, 2026. Shopware: Admin Account Takeover via User Recovery Hash Exposure Summary A low-privilege admin user with user_recovery:read ACL can take over any admin account. The attacker triggers password recovery for the victim (unauthenticated endpoint), reads the recovery hash from the Admin API search…
When was CVE-2026-48009 disclosed?
CVE-2026-48009 was first published in the National Vulnerability Database on June 4, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-48009 actively exploited?
CVE-2026-48009 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 10.4% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-48009?
CVE-2026-48009 has a CVSS v4.0 base score of 6.8 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-48009?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-48009, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-48009

Explore →

Is Your Infrastructure Affected by CVE-2026-48009?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.