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-2026-10039

CVE-2026-10039: WordPress Frontend Admin SQLi Vulnerability

CVE-2026-10039 is a SQL injection flaw in the Frontend Admin by DynamiApps WordPress plugin that allows authenticated admins to extract sensitive database information. This article covers technical details, affected versions, and mitigations.

Published: June 4, 2026

CVE-2026-10039 Overview

CVE-2026-10039 is a SQL injection vulnerability in the Frontend Admin by DynamiApps plugin for WordPress. The flaw affects all versions up to and including 3.28.28 and resides in the order parameter handling within the plugin's payments list page. Insufficient escaping of user-supplied input and lack of safe query preparation allow authenticated attackers with administrator-level access to append arbitrary SQL clauses to existing queries. Exploitation requires the attacker to supply a valid orderby parameter in the same request to reach the vulnerable code path. Successful exploitation can extract sensitive information from the WordPress database. The vulnerability is classified under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Authenticated administrators can extract sensitive database contents through SQL clause injection via the order request parameter.

Affected Products

  • Frontend Admin by DynamiApps (plugin slug acf-frontend-form-element) — all versions up to and including 3.28.28
  • WordPress sites running the vulnerable plugin with administrator accounts available to attackers
  • Patched in plugin release 3.29.3

Discovery Timeline

  • 2026-05-29 - CVE-2026-10039 published to NVD
  • 2026-05-29 - Last updated in NVD database

Technical Details for CVE-2026-10039

Vulnerability Analysis

The vulnerability is a generic SQL injection in the plugin's payments administration list view. The affected code is referenced at lines 45 and 46 of main/admin/admin-pages/payments/list.php in the plugin source tree. When the page builds its SQL query to enumerate payment records, it concatenates the order HTTP parameter directly into the query without escaping or parameterization. The orderby parameter must also be supplied with a valid value, because the conditional logic that processes order is only reached when orderby passes prior checks. Because the injection occurs inside an ORDER BY clause, attackers can leverage techniques such as subqueries, conditional expressions, or UNION-style stacking depending on database support to read arbitrary table contents, including user records and authentication metadata.

Root Cause

The root cause is failure to sanitize the order parameter and failure to use prepared statements via the WordPress $wpdb->prepare() API. The query string is assembled through direct concatenation, so any text supplied for order becomes part of the executed SQL.

Attack Vector

Exploitation is remote and network-based but requires authenticated administrator privileges. An attacker submits a crafted HTTP request to the payments listing page with a benign-looking orderby value and a malicious order value carrying additional SQL syntax. The injected SQL executes in the WordPress database context, returning data through error channels, timing, or response content.

No verified proof-of-concept code is published. Technical details are available in the Wordfence Vulnerability Report and the WordPress Plugin List.php Reference.

Detection Methods for CVE-2026-10039

Indicators of Compromise

  • HTTP requests to WordPress admin pages containing orderby and order parameters where order includes SQL syntax such as SELECT, UNION, SLEEP(, BENCHMARK(, parentheses, or commas instead of the expected ASC/DESC values.
  • Unexpected wpdb query errors in WordPress debug logs referencing ORDER BY clauses on payment-related tables.
  • Administrator sessions issuing repeated requests to the Frontend Admin payments list with varying order payloads.

Detection Strategies

  • Inspect web server and WordPress access logs for order parameter values that deviate from ASC or DESC.
  • Deploy a web application firewall rule that validates the order parameter against an allowlist of expected sort directions.
  • Correlate administrator authentication events with bursts of requests to admin-pages/payments/list.php to identify suspicious enumeration behavior.

Monitoring Recommendations

  • Enable database query logging on the WordPress MySQL or MariaDB backend and alert on malformed ORDER BY clauses.
  • Monitor for newly created or recently elevated administrator accounts that interact with the Frontend Admin plugin.
  • Track outbound data volumes from the database tier to detect bulk extraction following injection attempts.

How to Mitigate CVE-2026-10039

Immediate Actions Required

  • Update the Frontend Admin by DynamiApps plugin to version 3.29.3 or later on every WordPress site where it is installed.
  • Audit all WordPress administrator accounts, remove unused accounts, and reset credentials for any account suspected of compromise.
  • Review recent database access logs for evidence of injection attempts against the order parameter.

Patch Information

The vendor addressed the issue in plugin version 3.29.3. The fix is visible in the WordPress Changeset Overview and the patched source in main/admin/admin-pages/payments/list.php. Upgrading the plugin through the WordPress admin dashboard or via wp-cli applies the fix.

Workarounds

  • If immediate patching is not possible, disable the Frontend Admin by DynamiApps plugin until the upgrade can be applied.
  • Restrict administrator access using IP allowlisting at the web server or WAF tier to limit who can reach the vulnerable endpoint.
  • Add a WAF rule that rejects requests where the order query parameter is not equal to asc, desc, ASC, or DESC.
bash
# Update the plugin using wp-cli
wp plugin update acf-frontend-form-element --version=3.29.3

# Verify installed version
wp plugin get acf-frontend-form-element --field=version

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • WordPress Plugin List.php Reference

  • WordPress Plugin List.php Reference

  • WordPress Plugin List.php Reference

  • WordPress Plugin List.php Reference

  • WordPress Changeset Overview

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-8653: MasterStudy LMS Pro Plus SQLi Vulnerability

  • CVE-2026-5074: ARMember Premium Plugin SQLi Vulnerability

  • CVE-2026-5073: ARMember Premium WordPress SQL Injection

  • CVE-2018-25434: WP AutoSuggest SQL Injection 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