A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-8624

CVE-2024-8624: WordPress MDTF Plugin SQLi Vulnerability

CVE-2024-8624 is a SQL injection vulnerability in the WordPress Meta Data and Taxonomies Filter plugin allowing authenticated attackers to extract sensitive database information. This article covers technical details, affected versions, and mitigations.

Published: May 26, 2026

CVE-2024-8624 Overview

CVE-2024-8624 is a SQL Injection vulnerability in the MDTF – Meta Data and Taxonomies Filter plugin for WordPress. The flaw affects all versions up to and including 1.3.3.3. The vulnerability stems from insufficient escaping of the meta_key attribute in the mdf_select_title shortcode and inadequate preparation of the underlying SQL query [CWE-89]. Authenticated attackers with Contributor-level access or higher can append arbitrary SQL to existing queries and extract sensitive database contents.

Critical Impact

Authenticated Contributor-level users can execute arbitrary SQL queries against the WordPress database, exposing credentials, password hashes, and other confidential data.

Affected Products

  • Pluginus MDTF – Meta Data and Taxonomies Filter plugin for WordPress
  • All versions up to and including 1.3.3.3
  • WordPress installations using the mdf_select_title shortcode

Discovery Timeline

  • 2024-09-24 - CVE-2024-8624 published to NVD
  • 2024-09-26 - Last updated in NVD database

Technical Details for CVE-2024-8624

Vulnerability Analysis

The MDTF plugin exposes a shortcode named mdf_select_title that accepts a meta_key attribute. The plugin passes this attribute directly into a SQL query without proper sanitization or use of prepared statements. Any user who can render shortcodes in posts, including Contributors, can therefore inject SQL fragments into the query context.

The injection occurs through the standard WordPress shortcode rendering pipeline. When the shortcode is processed, the attacker-controlled meta_key value is concatenated into a SELECT statement executed against the wp_postmeta and related tables. The query result is returned through the rendered page, enabling UNION-based extraction of arbitrary table contents.

The scope-changed CVSS vector reflects that a low-privileged authenticated user can compromise confidentiality, integrity, and availability across the WordPress installation. Successful exploitation typically yields administrator password hashes, secret keys, and session data stored in wp_users and wp_options.

Root Cause

The root cause is a failure to apply wpdb::prepare() or equivalent parameterization to a user-controlled shortcode attribute. The plugin also omits whitelist validation of the meta_key value against expected meta field names, treating an attacker-supplied string as a trusted SQL identifier.

Attack Vector

An attacker with Contributor-level access submits a post containing the mdf_select_title shortcode with a malicious meta_key attribute. The attacker crafts the attribute to break out of the original query context and append a UNION SELECT or similar construct. When the post is previewed or published, the injected SQL executes with database privileges of the WordPress user account.

For technical specifics, refer to the Wordfence Vulnerability Intelligence advisory and the WordPress plugin changeset.

Detection Methods for CVE-2024-8624

Indicators of Compromise

  • Posts or post revisions containing the mdf_select_title shortcode with SQL keywords such as UNION, SELECT, --, or INFORMATION_SCHEMA inside the meta_key attribute.
  • Unexpected database errors logged by WordPress or the MySQL/MariaDB server originating from MDTF shortcode rendering.
  • New or modified WordPress administrator accounts following Contributor account activity.

Detection Strategies

  • Audit the wp_posts table for shortcode patterns matching mdf_select_title with non-alphanumeric characters in meta_key.
  • Inspect web server access logs for POST requests to /wp-admin/post.php or /wp-admin/admin-ajax.php from Contributor accounts that include encoded SQL syntax.
  • Enable MySQL general query logging temporarily to surface anomalous SELECT statements referencing wp_users.user_pass.

Monitoring Recommendations

  • Alert on Contributor or Author accounts viewing post previews that trigger MDTF shortcode rendering with abnormal payload lengths.
  • Monitor for privilege escalation events where Contributor accounts gain elevated capabilities shortly after publishing MDTF-containing content.
  • Track plugin file integrity for wp-meta-data-filter-and-taxonomy-filter to confirm patched versions are in place.

How to Mitigate CVE-2024-8624

Immediate Actions Required

  • Update the MDTF – Meta Data and Taxonomies Filter plugin to a version newer than 1.3.3.3 immediately.
  • Review all Contributor, Author, and Editor accounts and disable any that are inactive or unrecognized.
  • Rotate WordPress administrator passwords, wp-config.php secret keys, and any API credentials stored in the database.

Patch Information

The vendor addressed the vulnerability in the WordPress.org plugin repository. Review the official changeset for the corrective code that introduces proper escaping and query preparation for the meta_key attribute.

Workarounds

  • Deactivate and remove the MDTF plugin until patching is possible.
  • Restrict shortcode usage by lower-privileged roles using a capability management plugin if removal is not feasible.
  • Deploy a web application firewall rule to block requests containing SQL metacharacters in the meta_key parameter of MDTF shortcodes.
bash
# Update the plugin via WP-CLI
wp plugin update wp-meta-data-filter-and-taxonomy-filter

# Verify the installed version
wp plugin get wp-meta-data-filter-and-taxonomy-filter --field=version

# If a patched version is not yet available, deactivate the plugin
wp plugin deactivate wp-meta-data-filter-and-taxonomy-filter

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechPluginus Wordpress Meta Data And Taxonomies Filter

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.75%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • Wordfence Vulnerability Intelligence
  • Vendor Resources
  • WordPress Changeset Update
  • Related CVEs
  • CVE-2024-30457: WordPress MDTF Plugin CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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