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

CVE-2026-4119: WordPress Plugin Auth Bypass Vulnerability

CVE-2026-4119 is an authorization bypass flaw in the Create DB Tables WordPress plugin allowing authenticated attackers to delete critical database tables. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-4119 Overview

CVE-2026-4119 is a critical authorization bypass vulnerability affecting the Create DB Tables plugin for WordPress in all versions up to and including 1.2.1. The vulnerability stems from the plugin's failure to implement proper capability checks and nonce verification on administrative action hooks, allowing any authenticated user—including those with minimal Subscriber-level privileges—to create arbitrary database tables and delete existing ones, including critical WordPress core tables.

Critical Impact

This vulnerability enables authenticated attackers with Subscriber-level access to completely destroy a WordPress installation by deleting critical database tables such as wp_users or wp_options, leading to total site compromise.

Affected Products

  • Create DB Tables plugin for WordPress version 1.2.1 and earlier
  • WordPress installations with the Create DB Tables plugin active
  • Any WordPress site where authenticated users (including Subscribers) exist

Discovery Timeline

  • 2026-04-22 - CVE-2026-4119 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-4119

Vulnerability Analysis

This authorization bypass vulnerability (CWE-862: Missing Authorization) exists because the Create DB Tables plugin registers admin_post action hooks for sensitive database operations without implementing proper security controls. The plugin exposes two critical endpoints: admin_post_add_table for creating database tables and admin_post_delete_db_table for deleting tables. These hooks only require the user to be logged into WordPress, meaning the admin_post handler processes requests from any authenticated user regardless of their role or capabilities.

The most dangerous aspect of this vulnerability lies in the cdbt_delete_db_table() function, which accepts a user-supplied table name directly from the $_POST['db_table'] parameter and constructs a DROP TABLE SQL query without any sanitization or authorization verification. An attacker with a simple Subscriber account can craft a malicious POST request targeting any database table, including WordPress core tables essential for site operation.

Root Cause

The root cause is the complete absence of security controls in the plugin's administrative action handlers. WordPress provides standard security mechanisms such as current_user_can() for capability checks and wp_verify_nonce()/check_admin_referer() for CSRF protection, but the vulnerable plugin implements neither. The developers incorrectly assumed that the admin_post hook would only be accessible to administrators, when in fact it only requires basic authentication.

The vulnerable code paths can be examined in the plugin source code on the WordPress Plugin Trac.

Attack Vector

The attack can be executed remotely over the network by any authenticated WordPress user. The attacker only needs valid credentials for an account with Subscriber-level permissions—the lowest privilege level in WordPress.

The attack flow involves:

  1. Authenticating to WordPress with any valid user credentials (Subscriber or above)
  2. Sending a crafted POST request to the admin-post.php endpoint with action=delete_db_table
  3. Including the target table name in the db_table POST parameter
  4. The plugin executes the DROP TABLE query without verification, destroying the specified table

The cdbt_create_new_table() function similarly lacks authorization checks, allowing attackers to create arbitrary database tables which could be used for further exploitation or to consume database resources. For detailed technical analysis, refer to the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-4119

Indicators of Compromise

  • Unexpected database table deletions or missing WordPress core tables (wp_users, wp_options, wp_posts, etc.)
  • Unusual POST requests to /wp-admin/admin-post.php from low-privileged user accounts
  • Error logs showing database table not found errors for core WordPress tables
  • New or unexpected database tables appearing in the WordPress database

Detection Strategies

  • Monitor HTTP access logs for POST requests to admin-post.php containing action=delete_db_table or action=add_table parameters
  • Implement database audit logging to track DROP TABLE and CREATE TABLE queries
  • Configure web application firewall (WAF) rules to alert on requests matching the vulnerable action hook patterns
  • Review WordPress user activity logs for suspicious actions by Subscriber-level accounts

Monitoring Recommendations

  • Enable database query logging and set up alerts for DROP TABLE commands executed outside of expected maintenance windows
  • Deploy file integrity monitoring to detect sudden WordPress functionality failures indicative of database destruction
  • Implement real-time monitoring of WordPress admin endpoints for abnormal request patterns from non-administrator users
  • Use SentinelOne Singularity to monitor for post-exploitation activities following site compromise

How to Mitigate CVE-2026-4119

Immediate Actions Required

  • Immediately deactivate and remove the Create DB Tables plugin from all WordPress installations
  • Audit recent database changes for unauthorized table creations or deletions
  • Review WordPress user accounts and remove any unauthorized or unnecessary Subscriber-level accounts
  • Restore affected databases from clean backups if any tables have been maliciously deleted
  • Implement additional WAF rules to block requests to the vulnerable endpoints until the plugin is removed

Patch Information

As of the last update on 2026-04-22, no official patch has been released for this vulnerability. The plugin remains vulnerable in version 1.2.1 and all prior versions. Organizations should not wait for a patch and should immediately remove the plugin from production environments.

Site administrators should monitor the WordPress Plugin Repository for any security updates.

Workarounds

  • Remove the Create DB Tables plugin entirely from WordPress installations as the only fully effective workaround
  • If removal is not immediately possible, restrict user registrations and remove all non-essential user accounts, particularly those with Subscriber-level access
  • Implement database user permission restrictions at the MySQL/MariaDB level to prevent DROP TABLE operations from the WordPress database user
  • Deploy a web application firewall rule to block POST requests to admin-post.php containing the delete_db_table or add_table action parameters
bash
# Example WAF rule for ModSecurity to block vulnerable endpoints
SecRule REQUEST_URI "@contains /wp-admin/admin-post.php" \
    "id:100001,phase:2,deny,status:403,\
    chain,msg:'CVE-2026-4119 Exploit Attempt Blocked'"
SecRule ARGS:action "@rx ^(delete_db_table|add_table)$"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.02%

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

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6214: Forminator Forms Auth Bypass Vulnerability

  • CVE-2026-4807: WordPress Appointment Booking Auth Bypass

  • CVE-2026-5753: WordPress Migration Plugin Auth Bypass Flaw

  • CVE-2026-32834: WordPress PayPal Plugin Auth Bypass Flaw
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