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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2021-47924

CVE-2021-47924: Ultimate Product Catalog XSS Vulnerability

CVE-2021-47924 is a stored XSS vulnerability in Ultimate Product Catalog 5.8.2 that lets authenticated attackers inject malicious scripts via the price parameter. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2021-47924 Overview

CVE-2021-47924 is a stored cross-site scripting (XSS) vulnerability in the Ultimate Product Catalog WordPress plugin version 5.8.2, developed by Etoile Web Design. Authenticated attackers can inject malicious HTML or JavaScript through the price parameter when submitting POST requests to post.php. The injected payload is stored in the product record and executes in the browser of any user who views the affected product page. The vulnerability is categorized under CWE-79: Improper Neutralization of Input During Web Page Generation.

Critical Impact

Authenticated attackers can persist arbitrary JavaScript in product listings, enabling session hijacking, credential theft, and administrative account compromise when victims load the catalog.

Affected Products

  • Ultimate Product Catalog WordPress plugin version 5.8.2
  • Etoile Web Design Ultimate Product Catalogue (ultimate-product-catalogue)
  • WordPress sites running the vulnerable plugin release

Discovery Timeline

  • 2026-05-10 - CVE-2021-47924 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2021-47924

Vulnerability Analysis

The vulnerability stems from missing output encoding and input sanitization on the price field of the Ultimate Product Catalog plugin. When an authenticated user submits a product through post.php, the application accepts arbitrary HTML and JavaScript content in the price parameter and stores it directly in the WordPress database. The stored value is later rendered into the product display without context-appropriate escaping. Because the payload persists server-side, every visitor who loads the affected product triggers script execution under the site's origin. The flaw requires only low privileges and minimal user interaction from the victim, making it useful for lateral compromise of higher-privileged accounts such as administrators.

Root Cause

The root cause is improper neutralization of user-supplied input written to a page that is later served to other users. The price parameter is expected to contain a numeric or currency value, yet the plugin enforces no type validation, allowlist filtering, or HTML entity encoding. The stored data path bypasses WordPress sanitization helpers such as sanitize_text_field() and wp_kses(), so script tags and event handlers survive intact through database storage and rendering.

Attack Vector

An attacker authenticates to the WordPress site with any account that has product submission rights. The attacker sends a POST request to post.php containing a payload such as <script>...</script> or an event-handler attribute in the price field. The plugin stores the product, and the payload executes in the browser of any administrator or visitor who subsequently views the catalog. This enables session theft, forced administrative actions, and follow-on account takeover. A public proof of concept is available at Exploit-DB #50534 and the VulnCheck Advisory on WordPress XSS.

Detection Methods for CVE-2021-47924

Indicators of Compromise

  • Product records in the WordPress database containing HTML tags, <script> blocks, or on* event handler attributes in the price column.
  • POST requests to post.php with price parameter values that include angle brackets, JavaScript URIs, or encoded script payloads.
  • Outbound browser requests from administrator sessions to unfamiliar domains immediately after viewing the product catalog.

Detection Strategies

  • Inspect web server access logs for POST requests to /wp-admin/post.php where body content includes script-like patterns in the price field.
  • Query the WordPress wp_postmeta and plugin-specific tables for stored price values that fail a strict numeric or currency regular expression.
  • Deploy a web application firewall rule that flags non-numeric content submitted to the Ultimate Product Catalog price parameter.

Monitoring Recommendations

  • Alert on new or modified product entries created by non-administrator accounts on sites running ultimate-product-catalogue.
  • Monitor administrator session anomalies such as unexpected cookie exfiltration or privilege changes following catalog page visits.
  • Track plugin version inventory across WordPress estates and flag installations pinned at 5.8.2 or earlier.

How to Mitigate CVE-2021-47924

Immediate Actions Required

  • Update the Ultimate Product Catalog plugin to a release later than 5.8.2 via the WordPress Plugin Catalog.
  • Audit existing product entries for HTML or JavaScript content in the price field and remove malicious payloads.
  • Rotate administrator credentials and invalidate active sessions if exploitation is suspected.

Patch Information

Refer to the vendor at Etoile Web Design and the plugin listing on the WordPress repository for the latest fixed release. Apply the most recent plugin version that includes input validation and output encoding for the price parameter. Verify the update by confirming that submitted HTML in the price field is rendered as escaped text rather than executed markup.

Workarounds

  • Restrict product submission capabilities to trusted administrator accounts until the plugin is patched.
  • Deploy a Content Security Policy that disallows inline scripts on catalog pages to reduce stored XSS execution.
  • Add a WAF rule that rejects POST requests to post.php where the price parameter contains <, >, or javascript: substrings.
bash
# Example ModSecurity rule to block non-numeric price submissions
SecRule ARGS:price "!@rx ^[0-9]+(\.[0-9]{1,2})?$" \
  "id:1004792,phase:2,deny,status:403,\
   msg:'CVE-2021-47924: Non-numeric value in Ultimate Product Catalog price parameter'"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechUltimate Product Catalog

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Plugin Catalog

  • Etoile Web Design Overview

  • Exploit-DB #50534

  • VulnCheck Advisory on WordPress XSS
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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