Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-48015
Published:June 05, 2026
Updated:June 06, 2026
SVG files are in the "allowed_extensions" whitelist and can be uploaded by any admin user via the media manager. There is zero SVG content sanitization anywhere in the upload pipeline. A malicious SVG with JavaScript ("onload", "<script>", "<foreignObject>") executes in the context of the Shopware domain when accessed. The Problem In "src/Core/Framework/Resources/config/packages/shopware.yaml", line 194: allowed_extensions: ["jpg", "jpeg", "png", "webp", "avif", "gif", "svg", ...] SVG is whitelisted. The upload path ("MediaUploadController" → "FileSaver" → "TypeDetector") recognizes SVG as "ImageType" with "VECTOR_GRAPHIC" flag, but no code strips JavaScript, event handlers, or external entity references from the SVG XML. A search of the entire codebase for SVG sanitization returns — no "DOMPurify", no "svg-sanitize", no "strip_tags" on SVG content, nothing. Impact Stored XSS affecting all users who view the uploaded SVG. In an e-commerce context, this can lead to admin account takeover, customer data theft, or malicious plugin installation. Suggested Fix Either: 1. Remove SVG from "allowed_extensions" if SVG upload is not a core requirement 2. Sanitize SVG content on upload using a library like "enshrined/svg-sanitize" (strips scripts, event handlers, external references) 3. Serve SVGs with "Content-Disposition: attachment" to prevent inline rendering 4. Serve SVGs from a separate domain (like Nextcloud's "usercontent.apps.nextcloud.com") Option 2 is the most practical — "enshrined/svg-sanitize" is already used by WordPress and other PHP projects. Regards & BG, Keyvan Hardani
Affected Packages
https://github.com/shopware/shopware.git (GITHUB):
Affected version(s) >=v6.6.0.0 <v6.6.10.18
Fix Suggestion:
Update to version v6.6.10.18
https://github.com/shopware/shopware.git (GITHUB):
Affected version(s) >=v6.7.0.0 <v6.7.10.1
Fix Suggestion:
Update to version v6.7.10.1
shopware/core (PHP):
Affected version(s) >=dev-tmp-a8bb4ae4f7f0e90697dc8bf7e92865771b615335 <v6.6.10.18
Fix Suggestion:
Update to version v6.6.10.18
shopware/platform (PHP):
Affected version(s) >=dev-acceptance-test-submit-a-review-backport-6.6.x <v6.6.10.18
Fix Suggestion:
Update to version v6.6.10.18
shopware/core (PHP):
Affected version(s) >=v6.7.0.0 <v6.7.10.1
Fix Suggestion:
Update to version v6.7.10.1
shopware/platform (PHP):
Affected version(s) >=v6.7.0.0 <v6.7.10.1
Fix Suggestion:
Update to version v6.7.10.1
Do you need more information?
Contact Us
CVSS v4
Base Score:
6.9
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
HIGH
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
4.9
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
HIGH
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
HIGH
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')