CVE-2026-48010

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: non-admin user with user:create ACL can create admin accounts

UserController::upsertUser() writes user data in SYSTEM_SCOPE and does not filter the admin field. A non-admin API user with user:create or user:update ACL permission can set admin: true on new or existing users, escalating to full admin access.

The Problem

In src/Core/Framework/Api/Controller/UserController.php, line 210-234:

public function upsertUser(?string $userId, Request $request, Context $context, ResponseFactoryInterface $factory): Response
{
    $data = $request->request->all(); // raw request data, no field filtering
    // ...
    $events = $context->scope(Context::SYSTEM_SCOPE, fn (Context $context) =>
        $this->userRepository->upsert([$data], $context)
    );
}

SYSTEM_SCOPE bypasses AclWriteValidator entirely (line 52 of AclWriteValidator::preValidate() returns early for SYSTEM_SCOPE). The admin boolean field is accepted without restriction.

Compare with IntegrationController::upsertIntegration() in the same codebase, which correctly checks:

if ((!$source instanceof AdminApiSource)
    || (!$source->isAdmin()
    && isset($data['admin']))
) {
    throw new PermissionDeniedException();
}

UserController is missing this exact check.

Impact

Any API user with the low-privilege user:create permission can create accounts with full admin access, or with user:update can promote any existing user to admin. This is a direct privilege escalation.

Suggested Fix

Add the same isAdmin() check from IntegrationController:

$source = $context->getSource();
if ((!$source instanceof AdminApiSource) || (!$source->isAdmin() && isset($data['admin']))) {
    throw new PermissionDeniedException();
}

Best regards, Keyvan Hardani

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-48010(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:50 UTCEG score recompute
  2. 2026-07-08 09:34 UTCEG score recompute
  3. 2026-07-06 02:23 UTCEG score recompute
  4. 2026-07-03 23:29 UTCEG score recompute
  5. 2026-07-02 22:58 UTCEG score recompute
  6. 2026-07-01 23:28 UTCEG score recompute
  7. 2026-06-30 23:58 UTCEG score recompute
  8. 2026-06-30 00:13 UTCEG score recompute
  9. 2026-06-29 00:17 UTCEG score recompute
  10. 2026-06-28 00:47 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:55 UTCEG score recompute
  14. 2026-06-24 01:26 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:49 UTCEG score recompute
  19. 2026-06-16 14:19 UTCEG score recompute
  20. 2026-06-15 14:41 UTCEG score recompute
  21. 2026-06-14 23:18 UTCEPSS rescore
  22. 2026-06-14 15:11 UTCEG score recompute
  23. 2026-06-13 23:00 UTCEPSS rescore
  24. 2026-06-13 15:41 UTCEG score recompute
  25. 2026-06-12 23:12 UTCEPSS rescore
Show 9 more
  1. 2026-06-12 16:04 UTCEG score recompute
  2. 2026-06-11 16:35 UTCEG score recompute
  3. 2026-06-10 17:06 UTCEG score recompute
  4. 2026-06-09 17:37 UTCEG score recompute
  5. 2026-06-08 18:07 UTCEG score recompute
  6. 2026-06-07 18:38 UTCEG score recompute
  7. 2026-06-06 19:08 UTCEG score recompute
  8. 2026-06-05 19:39 UTCEG score recompute
  9. 2026-06-04 20:10 UTCEG score recompute

Frequently asked(5)

What is CVE-2026-48010?
CVE-2026-48010 is a medium vulnerability published on June 4, 2026. Shopware: Privilege escalation: non-admin user with user:create ACL can create admin accounts UserController::upsertUser() writes user data in SYSTEM_SCOPE and does not filter the admin field. A non-admin API user with user:create or user:update ACL permission can set admin: true on new or existing…
When was CVE-2026-48010 disclosed?
CVE-2026-48010 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-48010 actively exploited?
CVE-2026-48010 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-48010?
CVE-2026-48010 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-48010?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-48010, 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-48010

Explore →

Is Your Infrastructure Affected by CVE-2026-48010?

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