Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-4126

CVE-2026-4126: Table Manager Plugin Info Disclosure Flaw

CVE-2026-4126 is an information disclosure vulnerability in the Table Manager WordPress plugin that allows authenticated attackers to extract sensitive database information. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-4126 Overview

The Table Manager plugin for WordPress contains a Sensitive Information Exposure vulnerability in all versions up to and including 1.0.0. The flaw exists within the table_manager shortcode implementation, where the tablemanager_render_table_shortcode() function fails to properly restrict access to database tables. An authenticated attacker with Contributor-level privileges or higher can exploit this vulnerability to extract sensitive data from arbitrary WordPress database tables, potentially exposing user credentials, private content, and other confidential information stored in the database.

Critical Impact

Authenticated attackers with minimal privileges (Contributor-level) can read arbitrary WordPress database tables, including sensitive user data, configuration settings, and potentially stored credentials.

Affected Products

  • Table Manager plugin for WordPress version 1.0.0 and earlier

Discovery Timeline

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

Technical Details for CVE-2026-4126

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Information Exposure) and stems from inadequate access control in the shortcode handler. The tablemanager_render_table_shortcode() function accepts a user-controlled table attribute that is only sanitized using sanitize_key(). While this function removes special characters, it does not validate whether the requested table should be accessible to the user. The sanitized value is then concatenated with $wpdb->prefix to construct a full database table name, which is subsequently queried using DESC and SELECT * statements. All query results are rendered directly to the frontend.

The critical security flaw is the absence of an allowlist check to ensure only plugin-created tables can be accessed. Although the plugin maintains a tablemanager_created_tables option that could serve as an allowlist, this option is only referenced in administrative functions and is never validated within the shortcode handler.

Root Cause

The root cause is the missing authorization check in the shortcode handler. The tablemanager_render_table_shortcode() function blindly trusts user input to specify which database table to query. The sanitize_key() function provides only character-level sanitization (lowercasing and removing non-alphanumeric characters except dashes and underscores), but offers no protection against unauthorized table access. The tablemanager_created_tables option exists but is never consulted when processing shortcode requests, allowing attackers to query any table in the WordPress database that shares the configured table prefix.

Attack Vector

The attack is network-accessible and requires low privileges. An attacker needs only Contributor-level access to WordPress, which allows them to create posts containing shortcodes. By crafting a shortcode with a malicious table attribute pointing to sensitive WordPress core tables (such as users, usermeta, or options), the attacker can extract all rows and columns from those tables. Since the shortcode renders the data to the frontend, the attacker can view the results by previewing or publishing their post.

The vulnerability can be exploited by inserting a shortcode such as [table_manager table="users"] which, after sanitization and prefix concatenation, would query the wp_users table and expose all user account information including password hashes. For detailed code analysis, refer to the WordPress Table Manager source code and the Wordfence vulnerability analysis.

Detection Methods for CVE-2026-4126

Indicators of Compromise

  • Posts or pages containing [table_manager table="users"], [table_manager table="usermeta"], [table_manager table="options"], or similar shortcodes targeting WordPress core tables
  • Unusual database query patterns showing SELECT * operations on sensitive tables like wp_users or wp_options from the web application layer
  • Contributor or Author accounts creating drafts with shortcodes that reference non-plugin tables

Detection Strategies

  • Review all published and draft posts for table_manager shortcodes with suspicious table names that do not correspond to legitimate plugin-created tables
  • Monitor database query logs for unexpected full-table scans (SELECT *) against sensitive WordPress core tables originating from the Table Manager plugin
  • Implement Web Application Firewall (WAF) rules to detect and block shortcode patterns attempting to access unauthorized tables

Monitoring Recommendations

  • Enable WordPress audit logging to track shortcode usage and content modifications by Contributor-level users
  • Configure database activity monitoring to alert on bulk data extraction from sensitive tables
  • Establish baseline usage patterns for the Table Manager plugin and alert on anomalous table access requests

How to Mitigate CVE-2026-4126

Immediate Actions Required

  • Disable or uninstall the Table Manager plugin until a patched version is available
  • Audit all existing posts and pages for malicious shortcode usage and remove any unauthorized instances
  • Review user accounts with Contributor-level access or higher for signs of compromise
  • Consider temporarily demoting untrusted users to Subscriber role to prevent shortcode abuse

Patch Information

No vendor patch information is currently available. Monitor the WordPress Plugin Repository for updated versions that address this vulnerability. The fix should implement an allowlist check using the existing tablemanager_created_tables option within the tablemanager_render_table_shortcode() function.

Workarounds

  • Remove Contributor, Author, or Editor capabilities from untrusted users to prevent shortcode creation
  • Implement a custom code snippet or plugin to filter and block the table_manager shortcode entirely until a fix is released
  • Use a security plugin with shortcode filtering capabilities to prevent unauthorized table references
bash
# Disable the Table Manager plugin via WP-CLI
wp plugin deactivate table-manager

# Search for potentially malicious shortcode usage in posts
wp db query "SELECT ID, post_title, post_content FROM wp_posts WHERE post_content LIKE '%[table_manager%' AND post_status IN ('publish', 'draft', 'pending');"

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • WordPress Table Manager Code

  • WordPress Table Manager Code

  • WordPress Table Manager Code

  • WordPress Table Manager Code

  • WordPress Table Manager Code

  • WordPress Table Manager Code

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-4106: HT Mega Elementor Information Disclosure

  • CVE-2026-2262: Easy Appointments Information Disclosure

  • CVE-2026-4812: ACF WordPress Information Disclosure Flaw

  • CVE-2026-1314: WordPress 3D FlipBook Info Disclosure 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