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

CVE-2024-10687: Contest Gallery SQL Injection Vulnerability

CVE-2024-10687 is a time-based SQL injection flaw in Contest Gallery plugin for WordPress that allows unauthenticated attackers to extract sensitive database information. This article covers technical details, affected versions, and patches.

Updated: January 22, 2026

CVE-2024-10687 Overview

CVE-2024-10687 is a critical SQL Injection vulnerability affecting the Contest Gallery plugin for WordPress (Photos, Files, YouTube, Twitter, Instagram, TikTok, Ecommerce Contest Gallery – Upload, Vote, Sell via PayPal, Social Share Buttons). The vulnerability exists in all versions up to and including 24.0.3 due to insufficient escaping of the user-supplied $collectedIds parameter and lack of sufficient preparation on the existing SQL query. This time-based SQL Injection flaw allows unauthenticated attackers to append additional SQL queries into already existing queries, enabling extraction of sensitive information from the database.

Critical Impact

Unauthenticated attackers can exploit this SQL Injection vulnerability to extract sensitive database information including user credentials, personal data, and potentially complete database contents without any prior authentication.

Affected Products

  • Contest Gallery plugin for WordPress versions up to and including 24.0.3
  • WordPress installations using the Contest Gallery plugin (contest-gallery:contest_gallery)
  • Sites with ecommerce functionality enabled through the Contest Gallery plugin

Discovery Timeline

  • 2024-11-05 - CVE-2024-10687 published to NVD
  • 2024-11-08 - Last updated in NVD database

Technical Details for CVE-2024-10687

Vulnerability Analysis

This vulnerability represents a classic time-based SQL Injection attack vector that exploits insufficient input validation in a WordPress plugin. The vulnerable code resides in the ecommerce functionality of the Contest Gallery plugin, specifically within the ecommerce-get-raw-data-from-galleries.php file at line 61. The $collectedIds parameter is passed directly into an SQL query without proper sanitization or parameterized query preparation.

Time-based SQL Injection is particularly dangerous because it allows attackers to infer database information through controlled delays in server responses. By injecting SQL statements that cause conditional time delays (such as SLEEP() functions), attackers can systematically extract data character by character, even when no direct output is visible.

The vulnerability affects the WordPress content management system's database layer, potentially exposing all data stored within the WordPress database including user credentials, posts, configuration settings, and any ecommerce transaction data processed by the plugin.

Root Cause

The root cause of CVE-2024-10687 is a classic CWE-89 (Improper Neutralization of Special Elements used in an SQL Command) issue. The plugin developers failed to implement proper input sanitization and parameterized queries for the $collectedIds parameter. When user-controlled data is directly concatenated into SQL queries without escaping or prepared statements, attackers can inject malicious SQL code that the database engine executes with the same privileges as the application.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can craft malicious HTTP requests containing SQL injection payloads targeting the vulnerable $collectedIds parameter. The attack exploits the ecommerce data retrieval functionality, which is accessible to unauthenticated users browsing gallery content.

The exploitation technique involves sending requests with time-based SQL injection payloads. When the injected SQL condition evaluates to true, the database executes a delay function, and the attacker measures the response time to infer information. By iterating through possible values and observing response timing differences, attackers can systematically extract database contents including sensitive user information, hashed passwords, and configuration data.

For detailed technical analysis of the vulnerable code, refer to the WordPress Plugin File Review and the Wordfence Vulnerability Report.

Detection Methods for CVE-2024-10687

Indicators of Compromise

  • Unusual HTTP requests containing SQL syntax patterns targeting gallery or ecommerce endpoints
  • Database query logs showing SLEEP(), BENCHMARK(), or WAITFOR DELAY function calls
  • Abnormally long response times for specific gallery-related API requests
  • Web server logs with URL-encoded SQL injection payloads in query parameters

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block SQL injection patterns in request parameters
  • Enable WordPress database query logging and monitor for suspicious time-delay functions
  • Implement anomaly detection for response time variations that may indicate blind SQL injection attempts
  • Review access logs for repeated requests to ecommerce-related plugin endpoints with varying parameter values

Monitoring Recommendations

  • Configure real-time alerting for SQL injection signature matches in WAF logs
  • Monitor database connection patterns for unusual query execution times exceeding normal thresholds
  • Set up integrity monitoring for WordPress database tables to detect unauthorized data access or modification
  • Track failed authentication attempts that may follow successful data extraction from the database

How to Mitigate CVE-2024-10687

Immediate Actions Required

  • Update the Contest Gallery plugin to version 24.0.4 or later immediately
  • If immediate patching is not possible, temporarily disable the Contest Gallery plugin
  • Review database access logs for any signs of prior exploitation
  • Consider rotating database credentials and WordPress admin passwords as a precaution
  • Implement Web Application Firewall rules to block SQL injection attempts at the network edge

Patch Information

The vendor has released a security patch in version 24.0.4 that addresses this SQL Injection vulnerability. The fix implements proper input sanitization and prepared statements for the $collectedIds parameter. Site administrators should update via the WordPress plugin update mechanism or download the patched version directly from the WordPress plugin repository.

Review the complete changeset at the WordPress Plugin Change Log.

Workarounds

  • Disable the Contest Gallery plugin entirely until patching is possible
  • Implement server-level input filtering to block common SQL injection patterns
  • Restrict access to the WordPress admin panel and plugin endpoints using IP whitelisting
  • Deploy a WAF with SQL injection protection rules enabled for the affected site
bash
# Example: Block common SQL injection patterns at the web server level (Apache)
# Add to .htaccess in the WordPress root directory
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{QUERY_STRING} (;|'|"|%27|%22|--) [NC]
    RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechContest Gallery

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.53%

  • 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
  • WordPress Plugin File Review

  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Plugin Change Log
  • Related CVEs
  • CVE-2025-48291: Contest Gallery Stored XSS Vulnerability

  • CVE-2026-24964: Contest Gallery SSRF Vulnerability

  • CVE-2026-25035: Contest Gallery Auth Bypass Vulnerability

  • CVE-2026-24965: Contest Gallery Auth Bypass 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