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

CVE-2026-3138: WooCommerce Filter Auth Bypass Vulnerability

CVE-2026-3138 is an authentication bypass flaw in Product Filter for WooCommerce by WBW that allows unauthenticated attackers to delete filter data. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-3138 Overview

The Product Filter for WooCommerce by WBW plugin for WordPress contains a critical missing authorization vulnerability (CWE-862) that enables unauthenticated attackers to permanently delete all filter configurations from the database. This vulnerability affects all versions up to and including 3.1.2, allowing unauthorized data loss through crafted AJAX requests.

The flaw exists within the plugin's MVC framework architecture, which dynamically registers AJAX handlers via wp_ajax_nopriv_ hooks without implementing proper capability checks. Combined with permissive default behavior in the permission checking system, this creates an exploitable pathway for unauthenticated users to truncate the wp_wpf_filters database table.

Critical Impact

Unauthenticated attackers can permanently destroy all WooCommerce product filter configurations through a single crafted AJAX request, causing significant operational disruption for e-commerce sites relying on this filtering functionality.

Affected Products

  • Product Filter for WooCommerce by WBW plugin versions ≤ 3.1.2
  • WordPress sites using vulnerable versions of the woo-product-filter plugin
  • WooCommerce stores with filter configurations stored in wp_wpf_filters table

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-3138 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-3138

Vulnerability Analysis

This authorization bypass vulnerability stems from multiple architectural weaknesses in the plugin's MVC framework that compound to create an exploitable condition. The core issue is the absence of capability verification when processing AJAX requests from unauthenticated users.

The vulnerability chain involves three interconnected components: the frame class's AJAX handler registration, the base controller's magic method forwarding, and the default-permissive authorization model. When the plugin initializes, it registers AJAX action handlers using WordPress's wp_ajax_nopriv_ hook prefix, which allows non-logged-in users to trigger these actions. The base controller implements a __call() magic method that forwards undefined method invocations directly to the model layer without intermediate authorization checks.

Most critically, the havePermissions() method returns true by default when no explicit permissions are defined for an action, creating a fail-open authorization model rather than fail-closed. An attacker can exploit this by sending a crafted AJAX request with action=delete to truncate the wp_wpf_filters table, permanently destroying all saved filter configurations.

Root Cause

The root cause is the missing capability check (CWE-862) in the AJAX handler registration combined with a permissive default authorization model. The havePermissions() method defaults to returning true when no explicit permissions are configured, and the __call() magic method in the controller forwards requests to the model layer without validating user capabilities. This architectural design flaw allows unauthenticated requests to execute privileged database operations.

Attack Vector

The attack leverages the network-accessible AJAX endpoint that processes unauthenticated requests. An attacker requires no prior authentication or special privileges to exploit this vulnerability. The attack can be executed remotely by sending a specially crafted HTTP POST request to the WordPress AJAX handler endpoint (/wp-admin/admin-ajax.php) with the appropriate action parameter set to trigger the delete operation.

The exploitation path follows this sequence: the attacker sends an AJAX request → the wp_ajax_nopriv_ hook catches the request → the controller's __call() method forwards it to the model → the havePermissions() check passes by default → the model executes the table truncation.

For detailed technical analysis of the vulnerable code paths, see the WordPress Plugin Code References and the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-3138

Indicators of Compromise

  • Unexpected AJAX POST requests to /wp-admin/admin-ajax.php with action=delete parameter from unauthenticated sessions
  • Sudden loss of all Product Filter configurations without administrator action
  • Empty wp_wpf_filters database table on sites with previously configured filters
  • Unusual spikes in unauthenticated POST requests to WordPress AJAX endpoints

Detection Strategies

  • Monitor web server access logs for POST requests to admin-ajax.php containing suspicious action parameters from non-authenticated users
  • Implement database monitoring to detect TRUNCATE or DELETE operations on wp_wpf_filters table
  • Deploy Web Application Firewall (WAF) rules to inspect and block malicious AJAX requests targeting WooCommerce plugin endpoints
  • Configure WordPress security plugins to alert on unusual patterns of unauthenticated AJAX activity

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX handlers and review logs for anomalous unauthenticated requests
  • Set up automated alerts for database schema changes or bulk deletions affecting WooCommerce-related tables
  • Implement baseline monitoring for the wp_wpf_filters table row count to detect unexpected data loss
  • Regularly audit WordPress plugins for missing authorization checks using static analysis tools

How to Mitigate CVE-2026-3138

Immediate Actions Required

  • Update Product Filter for WooCommerce by WBW to the latest patched version immediately
  • Backup all existing filter configurations from the wp_wpf_filters table before applying updates
  • Review access logs for evidence of exploitation attempts targeting AJAX endpoints
  • Consider temporarily disabling the plugin if immediate update is not possible

Patch Information

The vendor has released a security update addressing this vulnerability. Users should update to a version newer than 3.1.2. The patch introduces proper capability checks before processing AJAX delete requests, ensuring only authorized administrators can modify filter configurations.

For patch details, see the WordPress Plugin Changeset. The plugin is available on the WordPress Plugin Directory.

Workarounds

  • Implement a Web Application Firewall rule to block unauthenticated AJAX requests with action=delete parameters targeting the plugin
  • Add a custom WordPress filter or plugin to enforce capability checks on wp_ajax_nopriv_ actions used by the Product Filter plugin
  • Restrict access to admin-ajax.php for unauthenticated users at the web server level if the plugin's front-end filtering functionality is not required
  • Create regular automated backups of the wp_wpf_filters table to enable rapid recovery if exploitation occurs
bash
# Block unauthenticated AJAX delete requests via .htaccess (Apache)
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} POST
    RewriteCond %{REQUEST_URI} admin-ajax\.php$
    RewriteCond %{QUERY_STRING} action=delete [NC,OR]
    RewriteCond %{HTTP:X-Requested-With} !XMLHttpRequest
    RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWoocommerce

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Change Log

  • WordPress Plugin Main Page

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-25455: WooCommerce Product Slider Auth Bypass

  • CVE-2026-1926: WooCommerce Subscriptions Auth Bypass Flaw

  • CVE-2026-32410: WBW Currency Switcher Auth Bypass Flaw

  • CVE-2026-32407: WPC Smart Wishlist Auth Bypass Flaw
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