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-2024-3552

CVE-2024-3552: Web Directory Free SQLi Vulnerability

CVE-2024-3552 is a SQL injection flaw in the Web Directory Free WordPress plugin that allows unauthenticated attackers to execute malicious SQL queries. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-3552 Overview

CVE-2024-3552 is a critical SQL Injection vulnerability affecting the Web Directory Free WordPress plugin before version 1.7.0. The plugin fails to properly sanitize and escape a parameter before incorporating it into a SQL statement. This vulnerability is exposed through an AJAX action that is accessible to unauthenticated users, making it particularly dangerous as no authentication is required to exploit it. Attackers can leverage multiple SQL injection techniques including UNION-based, Time-Based, and Error-Based injection methods.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability to extract sensitive data from the WordPress database, including user credentials, plugin configurations, and potentially gain complete control over the affected website.

Affected Products

  • Salephpscripts Web Directory Free versions prior to 1.7.0
  • WordPress installations running vulnerable Web Directory Free plugin
  • Any website utilizing the affected AJAX functionality

Discovery Timeline

  • 2024-06-13 - CVE-2024-3552 published to NVD
  • 2025-03-25 - Last updated in NVD database

Technical Details for CVE-2024-3552

Vulnerability Analysis

This SQL injection vulnerability exists in the Web Directory Free WordPress plugin due to improper input handling in an AJAX action handler. The plugin accepts user-supplied input and directly incorporates it into SQL queries without adequate sanitization or parameterized queries. This classic input validation failure allows attackers to manipulate the SQL query structure, potentially leading to unauthorized data access, data modification, or database compromise.

The vulnerability is particularly severe because it is accessible via WordPress AJAX endpoints without requiring any form of authentication. This means any external attacker can craft malicious requests targeting the vulnerable endpoint. The vulnerability supports multiple injection techniques, indicating the absence of any effective input filtering or output encoding mechanisms.

Root Cause

The root cause is an input validation failure (CWE-89: Improper Neutralization of Special Elements used in an SQL Command). The vulnerable code path accepts user input through an AJAX request parameter and passes it directly to a SQL query without proper sanitization, escaping, or the use of prepared statements. This architectural deficiency allows attackers to inject arbitrary SQL commands that are then executed by the database.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying the vulnerable AJAX endpoint exposed by the Web Directory Free plugin
  2. Crafting a malicious HTTP request containing SQL injection payloads
  3. Sending the request to the target WordPress installation
  4. Extracting data using UNION-based techniques for direct data retrieval
  5. Using Time-Based blind injection when direct output is not visible
  6. Leveraging Error-Based injection to extract data through error messages

The vulnerability enables attackers to read sensitive database contents, potentially modify or delete data, and in some configurations, execute operating system commands or write files to the server.

Detection Methods for CVE-2024-3552

Indicators of Compromise

  • Unusual SQL error messages in WordPress error logs or web server logs
  • Unexpected AJAX requests to Web Directory Free plugin endpoints with SQL syntax in parameters
  • Database query logs showing UNION SELECT statements or timing-based queries (SLEEP, BENCHMARK)
  • Evidence of data exfiltration or unauthorized database access attempts

Detection Strategies

  • Monitor web server access logs for suspicious requests containing SQL keywords (UNION, SELECT, SLEEP, BENCHMARK) targeting plugin AJAX endpoints
  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns
  • Enable WordPress debug logging to capture unusual database query errors
  • Deploy intrusion detection systems (IDS) with SQL injection signature detection capabilities

Monitoring Recommendations

  • Configure real-time alerting for SQL injection patterns in web traffic
  • Establish baseline metrics for AJAX request volumes and monitor for anomalies
  • Review database query logs for unauthorized or unusual query patterns
  • Implement application-level logging to track requests to the vulnerable plugin endpoints

How to Mitigate CVE-2024-3552

Immediate Actions Required

  • Update the Web Directory Free plugin to version 1.7.0 or later immediately
  • If immediate update is not possible, temporarily disable the Web Directory Free plugin
  • Review WordPress database for signs of compromise or unauthorized access
  • Audit web server and WordPress logs for evidence of exploitation attempts
  • Change all database credentials and WordPress user passwords as a precautionary measure

Patch Information

The vulnerability has been addressed in Web Directory Free version 1.7.0. Administrators should update to this version or later through the WordPress plugin management interface or by manually downloading from the official plugin repository. After updating, verify the plugin version is correctly installed by checking the Plugins page in WordPress admin. Additional technical details about this vulnerability are available through the WPScan Vulnerability Report.

Workarounds

  • Disable the Web Directory Free plugin entirely until the patch can be applied
  • Implement WAF rules to block requests containing SQL injection payloads targeting the affected AJAX endpoints
  • Use WordPress security plugins to add additional input validation layers
  • Restrict access to WordPress AJAX endpoints at the web server level for non-essential functionality
  • Consider using database user accounts with minimal privileges to limit potential damage from SQL injection

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechSalephpscripts

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability93.35%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • WPScan Vulnerability Report
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF Vulnerability
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