banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-1929

CVE-2026-1929: Advanced Woo Labels WordPress RCE Flaw

CVE-2026-1929 is a remote code execution vulnerability in the Advanced Woo Labels WordPress plugin that allows authenticated attackers to execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-1929 Overview

The Advanced Woo Labels plugin for WordPress contains a Remote Code Execution (RCE) vulnerability in all versions up to, and including, 2.37. This vulnerability stems from the unsafe use of call_user_func_array() with user-controlled callback and parameters in the get_select_option_values() AJAX handler. The absence of an allowlist for permitted callbacks combined with missing capability checks allows authenticated attackers with Contributor-level access or above to execute arbitrary PHP functions and operating system commands on the server.

Critical Impact

Authenticated attackers can achieve full server compromise by executing arbitrary PHP functions and OS commands through the vulnerable 'callback' parameter in the AJAX handler.

Affected Products

  • Advanced Woo Labels plugin for WordPress versions up to and including 2.37
  • WordPress installations with Advanced Woo Labels plugin 2.34 through 2.37
  • Any WordPress site using vulnerable versions of the Advanced Woo Labels plugin

Discovery Timeline

  • February 25, 2026 - CVE-2026-1929 published to NVD
  • February 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1929

Vulnerability Analysis

This vulnerability is classified under CWE-94 (Improper Control of Generation of Code - Code Injection). The core issue resides in the get_select_option_values() AJAX handler within the class-awl-admin-ajax.php file. The handler accepts a user-supplied callback parameter which is passed directly to PHP's call_user_func_array() function without proper validation or sanitization.

The vulnerability requires only Contributor-level authentication to exploit, making it accessible to a relatively wide range of WordPress users. Once exploited, an attacker gains the ability to execute arbitrary PHP functions, which can be leveraged to run system commands, read sensitive files, establish persistence, or pivot to other systems on the network.

Root Cause

The root cause of this vulnerability is the improper implementation of the AJAX handler that allows user-controlled input to influence the execution flow of PHP functions. Specifically:

  1. The get_select_option_values() function in class-awl-admin-ajax.php accepts a callback parameter from user input
  2. This parameter is passed to call_user_func_array() without an allowlist check to validate that only safe, intended functions can be called
  3. No capability check is performed to restrict access to users with appropriate administrative privileges
  4. The combination of these missing security controls allows low-privileged authenticated users to specify arbitrary PHP functions for execution

Attack Vector

The attack is network-based and requires only low-privilege authentication (Contributor-level access). An attacker would:

  1. Authenticate to the WordPress installation with at least Contributor privileges
  2. Craft a malicious AJAX request targeting the get_select_option_values handler
  3. Specify a dangerous PHP function (such as system, exec, passthru, or shell_exec) as the callback parameter
  4. Include command arguments to execute arbitrary operating system commands

The vulnerability allows attackers to bypass all intended access controls and execute code with the same privileges as the web server process, potentially leading to complete server compromise.

Detection Methods for CVE-2026-1929

Indicators of Compromise

  • Unusual AJAX requests to WordPress admin-ajax.php targeting get_select_option_values action
  • Web server logs showing requests with suspicious callback parameter values containing PHP function names like system, exec, passthru, or shell_exec
  • Unexpected PHP processes spawned by the web server user
  • New or modified files in web-accessible directories, particularly PHP files with obfuscated code

Detection Strategies

  • Monitor WordPress AJAX endpoints for requests containing function names as callback parameters
  • Implement Web Application Firewall (WAF) rules to detect and block requests containing dangerous PHP function names in parameters
  • Review Apache/Nginx access logs for patterns indicative of exploitation attempts against admin-ajax.php
  • Deploy file integrity monitoring on WordPress installations to detect unauthorized changes

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX requests and review regularly for anomalies
  • Configure alerts for execution of shell commands by the web server user account
  • Implement endpoint detection and response (EDR) solutions to monitor for suspicious process creation on web servers
  • Establish baseline behavior for WordPress installations and alert on deviations

How to Mitigate CVE-2026-1929

Immediate Actions Required

  • Update the Advanced Woo Labels plugin to a version newer than 2.37 immediately
  • Temporarily deactivate the Advanced Woo Labels plugin if an update is not yet available
  • Review WordPress user accounts and remove or restrict Contributor-level access where not strictly necessary
  • Audit web server logs for signs of exploitation attempts

Patch Information

Users should update to the latest version of the Advanced Woo Labels plugin as soon as a patched version becomes available. For detailed vulnerability information and updates, refer to the Wordfence Vulnerability Report. The vulnerable code can be reviewed in the WordPress Plugin Code Reference.

Workarounds

  • Deactivate and remove the Advanced Woo Labels plugin until a patched version is released
  • Implement WAF rules to block AJAX requests with suspicious callback parameters targeting the vulnerable handler
  • Restrict Contributor and higher-level WordPress accounts to only trusted users
  • Consider using a security plugin that can restrict AJAX handler access or implement capability checks
bash
# Disable the vulnerable plugin via WP-CLI
wp plugin deactivate advanced-woo-labels

# Check current plugin version
wp plugin list --name=advanced-woo-labels --fields=name,version,status

# Block suspicious AJAX requests via .htaccess (Apache)
# Add to WordPress root .htaccess file
# RewriteCond %{QUERY_STRING} callback=(system|exec|passthru|shell_exec) [NC]
# RewriteRule admin-ajax\.php - [F,L]

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.24%

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

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1565: WordPress WPUF Plugin RCE Vulnerability

  • CVE-2025-12975: WordPress CTX Feed Plugin RCE Vulnerability

  • CVE-2026-0926: Prodigy Commerce WordPress Plugin RCE Flaw

  • CVE-2026-1405: WordPress Slider Future Plugin RCE 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
  • English
  • 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