CVE-2026-48008

MEDIUMPre-NVD 6.56.5
EchelonGraph scoreLOW confidence

This medium-severity CVE scores 6.5 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.5
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: 0%CVSS: 6.5Exploit: NoneExposed: 0

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

Shopware: Privilege Escalation via Sync API Integration Admin Flag Bypass

Summary

A non-admin API user with integration:create ACL privilege can escalate to full administrator by creating an integration with admin: true through the Sync API (POST /api/_action/sync). The regular integration endpoint (POST /api/integration) correctly blocks this, but the Sync API bypasses the controller-level check by writing directly through the DAL EntityWriter. The integration entity definition lacks WriteProtection, and the admin field has no field-level restriction flag.

OWASP: A01:2021 — Broken Access Control

Root Cause

IntegrationController::upsertIntegration() checks $source->isAdmin() before allowing the admin field to be set. However, SyncController::sync() routes writes through SyncService → EntityWriter, which only applies:

  • AclWriteValidator — checks entity-level ACL (integration:create is sufficient)
  • EntityProtectionValidator — checks WriteProtection on entity definitions, but IntegrationDefinition has none

The admin field in IntegrationDefinition is a plain BoolField with no WriteProtection or special flag. The Sync API writes it without restriction.

Vulnerable code path:

  • src/Core/Framework/Api/Controller/SyncController.phpSyncServiceEntityWriter::upsert()
  • Missing protection: src/Core/Framework/Integration/IntegrationDefinition.phpadmin field has no WriteProtection(Context::SYSTEM_SCOPE)

Working protection (bypassed):

  • src/Core/Framework/Integration/IntegrationController.php:46-56isAdmin() check only applies to the dedicated controller endpoint

Impact

  • Complete admin API access — the escalated integration has full read/write on every entity: users, customers, orders, system configuration, integrations, plugins
  • PII exfiltration — read all customer records (names, emails, addresses, order history)
  • Persistent backdoor — the admin integration survives password changes and user deactivation

Remediation

Add WriteProtection(Context::SYSTEM_SCOPE) to IntegrationDefinition, matching how UserDefinition and AclRoleDefinition are already protected:

// src/Core/Framework/Integration/IntegrationDefinition.php
(new BoolField('admin', 'admin'))
    ->addFlags(new WriteProtection(Context::SYSTEM_SCOPE)),

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

Published

June 4, 2026

Last Modified

June 4, 2026

Vendor Advisories for CVE-2026-48008(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 / 25× 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:49 UTCEG score recompute
  4. 2026-07-03 02:12 UTCEG score recompute
  5. 2026-07-02 02:02 UTCEG score recompute
  6. 2026-07-01 01:54 UTCEG score recompute
  7. 2026-06-30 01:54 UTCEG score recompute
  8. 2026-06-29 01:55 UTCEG score recompute
  9. 2026-06-28 01:53 UTCEG score recompute
  10. 2026-06-27 01:53 UTCEG score recompute
  11. 2026-06-26 01:54 UTCEG score recompute
  12. 2026-06-25 01:54 UTCEG score recompute
  13. 2026-06-24 01:55 UTCEG score recompute
  14. 2026-06-23 01:55 UTCEG score recompute
  15. 2026-06-19 23:48 UTCEG score recompute
  16. 2026-06-18 21:21 UTCEG score recompute
  17. 2026-06-17 20:13 UTCEG score recompute
  18. 2026-06-16 20:14 UTCEG score recompute
  19. 2026-06-15 20:15 UTCEG score recompute
  20. 2026-06-14 23:18 UTCEPSS rescore
  21. 2026-06-14 20:08 UTCEG score recompute
  22. 2026-06-13 23:00 UTCEPSS rescore
  23. 2026-06-13 20:06 UTCEG score recompute
  24. 2026-06-12 23:12 UTCEPSS rescore
  25. 2026-06-12 20:05 UTCEG score recompute
Show 8 more
  1. 2026-06-11 20:05 UTCEG score recompute
  2. 2026-06-10 20:07 UTCEG score recompute
  3. 2026-06-09 20:07 UTCEG score recompute
  4. 2026-06-08 20:06 UTCEG score recompute
  5. 2026-06-07 20:07 UTCEG score recompute
  6. 2026-06-06 20:08 UTCEG score recompute
  7. 2026-06-05 20:09 UTCEG score recompute
  8. 2026-06-04 20:10 UTCEG score recompute

Frequently asked(5)

What is CVE-2026-48008?
CVE-2026-48008 is a medium vulnerability published on June 4, 2026. Shopware: Privilege Escalation via Sync API Integration Admin Flag Bypass Summary A non-admin API user with integration:create ACL privilege can escalate to full administrator by creating an integration with admin: true through the Sync API (POST /api/_action/sync). The regular integration endpoint…
When was CVE-2026-48008 disclosed?
CVE-2026-48008 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-48008 actively exploited?
CVE-2026-48008 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-48008?
CVE-2026-48008 has a CVSS v4.0 base score of 6.5 (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-48008?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-48008, 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-48008

Explore →

Is Your Infrastructure Affected by CVE-2026-48008?

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