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-2026-1128

CVE-2026-1128: WP eCommerce WordPress CSRF Vulnerability

CVE-2026-1128 is a CSRF flaw in WP eCommerce WordPress plugin that allows attackers to trick admins into deleting coupons. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: March 13, 2026

CVE-2026-1128 Overview

CVE-2026-1128 is a Cross-Site Request Forgery (CSRF) vulnerability affecting the WP eCommerce WordPress plugin through version 3.15.1. The plugin fails to implement proper CSRF token validation when processing coupon deletion requests, allowing attackers to craft malicious requests that trick authenticated administrators into unknowingly deleting coupons from their eCommerce stores.

Critical Impact

Attackers can manipulate authenticated WordPress administrators into deleting store coupons without their knowledge, potentially disrupting promotional campaigns and eCommerce operations.

Affected Products

  • WP eCommerce WordPress plugin through version 3.15.1

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-1128 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-1128

Vulnerability Analysis

This vulnerability is classified as CWE-352 (Cross-Site Request Forgery). The WP eCommerce plugin lacks proper CSRF protection mechanisms on the coupon deletion functionality within the administrative interface. When an administrator is logged into WordPress and visits a malicious webpage crafted by an attacker, the attacker can trigger unauthorized coupon deletion requests on behalf of the administrator without their consent or knowledge.

The attack requires user interaction—specifically, a logged-in administrator must be tricked into visiting an attacker-controlled page or clicking a malicious link while authenticated to the WordPress dashboard. Once this condition is met, the attacker can silently submit requests to delete coupons from the eCommerce system.

Root Cause

The root cause of this vulnerability is the absence of CSRF token verification (nonce checking) in the coupon deletion handler within the WP eCommerce plugin. WordPress provides built-in CSRF protection through its nonce system (wp_nonce_field() and wp_verify_nonce()), but the vulnerable code path does not properly implement these security checks before processing deletion requests.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker would typically:

  1. Craft a malicious HTML page containing a hidden form or JavaScript that submits a coupon deletion request to the target WordPress site
  2. Host this page on an attacker-controlled domain or inject it into a compromised website
  3. Trick an authenticated WordPress administrator into visiting the malicious page
  4. When the administrator loads the page, the browser automatically sends the forged deletion request along with the administrator's valid session cookies, causing the coupon to be deleted

The attack exploits the trust relationship between the browser and the WordPress site, leveraging the administrator's existing authenticated session to perform unauthorized actions.

Detection Methods for CVE-2026-1128

Indicators of Compromise

  • Unexpected deletion of coupons in the WP eCommerce plugin without corresponding administrator activity
  • Audit logs showing coupon deletion requests originating from unusual referrer URLs
  • Administrator reports of coupons disappearing without their knowledge
  • Web server logs showing POST requests to coupon management endpoints with external or suspicious Referer headers

Detection Strategies

  • Monitor WordPress audit logs for bulk or unexpected coupon deletion events
  • Implement web application firewall (WAF) rules to detect and block requests with suspicious Referer headers targeting coupon management endpoints
  • Review server access logs for patterns indicating CSRF exploitation attempts
  • Enable detailed logging for administrative actions within the eCommerce plugin

Monitoring Recommendations

  • Configure alerts for high-volume coupon deletion activity within short time periods
  • Monitor for administrator session usage from unusual IP addresses or geographic locations
  • Implement real-time monitoring of critical eCommerce administrative functions
  • Review and audit administrator activity logs regularly for anomalous patterns

How to Mitigate CVE-2026-1128

Immediate Actions Required

  • Update the WP eCommerce plugin to the latest version that includes CSRF protection for coupon management
  • Review recently deleted coupons and restore any that were removed unexpectedly
  • Implement additional security plugins that provide CSRF protection at the application level
  • Advise administrators to log out of WordPress when not actively using the dashboard

Patch Information

The vulnerability affects WP eCommerce versions through 3.15.1. Users should check the plugin repository for updated versions that address this CSRF vulnerability. For detailed technical information about this vulnerability, refer to the WPScan Vulnerability Report.

Workarounds

  • Limit administrative access to trusted IP addresses using WordPress or server-level IP whitelisting
  • Implement a web application firewall (WAF) with CSRF protection rules enabled
  • Train administrators to avoid clicking links in untrusted emails or visiting unknown websites while logged into WordPress
  • Consider disabling the coupon functionality temporarily until a patched version is available
  • Use browser extensions that block cross-site requests or isolate browsing sessions
bash
# Example: Apache .htaccess rule to restrict admin access by IP
<Files "admin-ajax.php">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Files>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWp Ecommerce

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • WPScan Vulnerability Report
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

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

  • CVE-2026-31744: Linux Kernel NULL Pointer 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