The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-29175

CVE-2026-29175: Craftcms Craft Commerce XSS Vulnerability

CVE-2026-29175 is a stored XSS vulnerability in Craftcms Craft Commerce that allows attackers to execute arbitrary JavaScript on the inventory page. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-29175 Overview

CVE-2026-29175 is a stored Cross-Site Scripting (XSS) vulnerability affecting Craft Commerce, the ecommerce platform for Craft CMS. The vulnerability exists in the Commerce Inventory page where the Product Title, Variant Title, and Variant SKU fields are rendered without proper HTML escaping. This allows an attacker with authenticated access to inject malicious JavaScript that executes whenever any user, including administrators, views the inventory management page.

Critical Impact

Authenticated attackers can inject persistent malicious scripts that execute in the context of administrator sessions, potentially leading to account takeover, data theft, or further compromise of the ecommerce platform.

Affected Products

  • Craft Commerce versions prior to 5.5.3
  • craftcms craft_commerce (all affected versions)
  • Craft CMS installations using the Commerce plugin

Discovery Timeline

  • 2026-03-10 - CVE-2026-29175 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-29175

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) stems from improper neutralization of input during web page generation. When product or variant information is saved to the database, the application fails to sanitize user-supplied data in critical fields. Subsequently, when the Commerce Inventory page renders this data, it outputs the raw content directly into the HTML without proper encoding or escaping.

The attack requires authenticated access to the Commerce administration interface with permissions to create or modify products and variants. Once malicious payloads are stored in the Product Title, Variant Title, or Variant SKU fields, they persist in the database and execute every time the inventory page is loaded by any authenticated user.

The network-accessible nature of this vulnerability combined with the potential for high confidentiality and integrity impact makes this a significant security concern for organizations running vulnerable Craft Commerce installations.

Root Cause

The root cause is insufficient output encoding in the Commerce Inventory page template rendering logic. The application accepts user input for product and variant fields but fails to apply proper HTML entity encoding when displaying these values. This allows HTML and JavaScript content to be interpreted as executable code by the browser rather than being displayed as plain text.

Attack Vector

An attacker with low-privileged access to the Commerce administration panel can exploit this vulnerability through the following attack flow:

  1. The attacker navigates to the product or variant creation/editing interface
  2. Malicious JavaScript payloads are inserted into the Product Title, Variant Title, or Variant SKU fields
  3. The payload is stored in the application database
  4. When any user (including administrators) views the Commerce Inventory page, the stored payload executes in their browser session
  5. The attacker can steal session cookies, perform actions on behalf of the victim, or redirect users to malicious sites

The vulnerability manifests in the inventory management template where field values are rendered without proper HTML escaping. The security advisory commit (9f0638a4fb29ed8295a463385a7cc49ec986e33a) implements proper output encoding to remediate this issue. See the GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-29175

Indicators of Compromise

  • Unusual JavaScript code or HTML tags present in Product Title, Variant Title, or Variant SKU database fields
  • Unexpected script execution or browser behavior when accessing the Commerce Inventory page
  • Audit log entries showing modifications to product/variant fields with script-like content
  • Reports from users about unexpected redirects or popups when viewing inventory pages

Detection Strategies

  • Implement Content Security Policy (CSP) headers to detect and block inline script execution
  • Deploy Web Application Firewall (WAF) rules to monitor for XSS payload patterns in POST requests to product/variant endpoints
  • Configure browser-based XSS auditing where available to identify potential injection attempts
  • Review application logs for requests containing common XSS payloads targeting product management endpoints

Monitoring Recommendations

  • Enable detailed logging for all product and variant modification operations
  • Set up alerts for database entries containing HTML tags or JavaScript syntax in product-related fields
  • Monitor for Content Security Policy violation reports that may indicate XSS exploitation attempts
  • Implement regular security scanning of the Commerce administration interface

How to Mitigate CVE-2026-29175

Immediate Actions Required

  • Upgrade Craft Commerce to version 5.5.3 or later immediately
  • Audit existing product and variant data for malicious payloads in Title and SKU fields
  • Review recent product/variant modification logs for suspicious activity
  • Implement Content Security Policy headers as an additional defense layer

Patch Information

The vulnerability has been fixed in Craft Commerce version 5.5.3. The fix implements proper HTML escaping for the Product Title, Variant Title, and Variant SKU fields in the Commerce Inventory page templates. Organizations should upgrade to this version or later to remediate the vulnerability.

For detailed information about the fix, refer to the GitHub Commit and the GitHub Security Advisory.

Workarounds

  • Restrict access to the Commerce administration panel to only trusted users until patching is complete
  • Implement strict input validation at the application layer to reject HTML/script content in product fields
  • Deploy a Web Application Firewall with XSS protection rules as a temporary mitigation measure
  • Configure Content Security Policy headers to prevent inline script execution
bash
# Example CSP header configuration for Nginx
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none';" always;

# Example CSP header configuration for Apache
Header always set Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none';"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCraftcms

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityLow
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-31859: Craft CMS Reflected XSS Vulnerability

  • CVE-2026-29173: Craft Commerce Stored XSS Vulnerability

  • CVE-2026-29176: Craft Commerce Stored XSS Vulnerability

  • CVE-2026-29177: Craft Commerce Stored XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English