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-29173

CVE-2026-29173: Craft Commerce Stored XSS Vulnerability

CVE-2026-29173 is a stored cross-site scripting flaw in Craft Commerce that allows script execution when updating Order Status from the Commerce Orders Table. This post covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-29173 Overview

CVE-2026-29173 is a stored Cross-Site Scripting (XSS) vulnerability affecting Craft Commerce, the ecommerce platform for Craft CMS. The vulnerability exists in the Order Status management functionality where the Order Status Name is rendered without proper escaping when a user attempts to update the Order Status from the Commerce Orders Table. This lack of input sanitization allows malicious script execution to occur within the administrative context.

Critical Impact

Authenticated administrators with Order Status management privileges can inject malicious scripts that execute in the context of other administrative users, potentially leading to session hijacking, administrative account compromise, or further privilege abuse within the Craft CMS environment.

Affected Products

  • Craft Commerce versions prior to 4.10.2
  • Craft Commerce versions prior to 5.5.3
  • craftcms craft_commerce (all vulnerable versions for Craft CMS)

Discovery Timeline

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

Technical Details for CVE-2026-29173

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) resides in the Order Status management interface of Craft Commerce. When administrators create or modify Order Status entries, the status name field does not properly sanitize or encode user-supplied input before rendering it back to the browser. Because the vulnerability is stored rather than reflected, the malicious payload persists in the database and executes each time another user views the affected Order Status within the Commerce Orders Table.

The attack requires authenticated access with privileges to modify Order Status settings, which limits the initial attack surface to administrative users. However, once injected, the payload can target any user who accesses the orders management interface, including higher-privileged administrators.

Root Cause

The root cause of this vulnerability is improper output encoding in the template rendering logic for Order Status names. When displaying the Order Status Name in the Commerce Orders Table interface, the application fails to apply appropriate HTML entity encoding or contextual escaping. This allows HTML and JavaScript content submitted through the Order Status Name field to be interpreted as executable code rather than being displayed as plain text.

Attack Vector

The attack vector for CVE-2026-29173 is network-based and requires an authenticated user with administrative privileges to the Craft Commerce backend. The attacker must have sufficient permissions to access and modify Order Status configurations. The attack flow involves:

  1. An attacker with admin-level access navigates to the Order Status management section
  2. The attacker creates or modifies an Order Status, injecting malicious JavaScript in the Name field
  3. The payload is stored in the database without sanitization
  4. When another administrator views the Commerce Orders Table, the malicious script executes in their browser session
  5. The injected script can perform actions on behalf of the victim, steal session tokens, or redirect users to malicious sites

The vulnerability mechanism involves improper output encoding in the Order Status display template. When rendering the status name, the application fails to escape special HTML characters, allowing injected script tags or event handlers to execute. For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-29173

Indicators of Compromise

  • Unusual JavaScript code or HTML tags present in Order Status name entries in the Craft Commerce database
  • Unexpected script execution or browser console errors when accessing the Commerce Orders Table
  • Order Status names containing suspicious characters such as <, >, script, onerror, or onload attributes

Detection Strategies

  • Review audit logs for Order Status modifications, particularly those containing special characters or encoded payloads
  • Implement content security policy (CSP) headers to detect and block inline script execution attempts
  • Monitor database entries in the Order Status table for values containing HTML or JavaScript syntax

Monitoring Recommendations

  • Enable detailed logging for administrative actions within Craft CMS and Craft Commerce
  • Configure web application firewall (WAF) rules to alert on XSS payload patterns in form submissions
  • Periodically audit Order Status configurations for anomalous or suspicious name values

How to Mitigate CVE-2026-29173

Immediate Actions Required

  • Upgrade Craft Commerce to version 4.10.2 or later for the 4.x branch
  • Upgrade Craft Commerce to version 5.5.3 or later for the 5.x branch
  • Review existing Order Status entries for any suspicious content and sanitize as necessary
  • Implement Content Security Policy headers to mitigate the impact of any existing XSS payloads

Patch Information

Craft CMS has released security patches addressing this vulnerability in Craft Commerce versions 4.10.2 and 5.5.3. The fixes implement proper output encoding for the Order Status Name field, ensuring that user-supplied content is rendered as plain text rather than executable HTML/JavaScript.

Relevant patch commits:

  • Patch for version 4.x branch (commit 60cdc505c03b6fa2f59715e8c060114b66334afa)
  • Patch for version 5.x branch (commit a2ea853935ef03297ea1298bdb0d8c55ec5daf7b)

For complete details, see the GitHub Security Advisory GHSA-mqxf-2998-c6cp.

Workarounds

  • Restrict access to Order Status management functionality to only essential trusted administrators until patching is complete
  • Implement a Web Application Firewall (WAF) with XSS filtering rules to block malicious payloads in form submissions
  • Manually validate and sanitize all Order Status name entries in the database to remove any potentially malicious content
bash
# Verify current Craft Commerce version
./craft commerce/about

# Update Craft Commerce via Composer
composer update craftcms/commerce

# Clear caches after update
./craft clear-caches/all

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCraftcms

  • SeverityLOW

  • CVSS Score1.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:P/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Commit Update

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

  • CVE-2026-29175: Craftcms Craft Commerce 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