CVE-2016-3109:
Shopware RCE Vulnerability
9.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.96806%
CWE
Published
5/14/2022
Updated
2/7/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
shopware/shopware | composer | < 4.3.7 | 4.3.7 |
shopware/shopware | composer | >= 5.0.0, < 5.1.5 | 5.1.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability is explicitly tied to the backend/Login/load endpoint, which maps to the loadAction method in Shopware's MVC architecture. The CWE-20 (Improper Input Validation) and RCE nature of the exploit strongly suggest unsafe deserialization of user input. While the exact code isn't visible, the commit d73e903 referenced in advisories likely patched this controller method by adding validation or removing dangerous deserialization. This pattern matches common PHP object injection vulnerabilities where unserialize() is used with untrusted data.