The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-7472

CVE-2026-7472: WordPress Read More & Accordion SQLi Flaw

CVE-2026-7472 is a time-based blind SQL injection vulnerability in the Read More & Accordion WordPress plugin affecting versions up to 3.5.7. Authenticated attackers can extract sensitive database information. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 21, 2026

CVE-2026-7472 Overview

CVE-2026-7472 is a time-based blind SQL injection vulnerability in the Read More & Accordion plugin for WordPress, affecting all versions up to and including 3.5.7. The flaw exists in the orderby parameter handling within the getAllDataByLimit() and getAccordionAllDataByLimit() functions in ReadMoreData.php. Authenticated attackers with administrator-level access, or any role granted permission through the yrm-user-roles setting, can inject arbitrary SQL expressions into the ORDER BY clause. Successful exploitation allows extraction of sensitive database contents, including administrator credential hashes. The vulnerability is classified under [CWE-89] (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Authenticated attackers with administrator privileges can perform time-based blind SQL injection to extract administrator credential hashes and other sensitive data from the WordPress database.

Affected Products

  • Read More & Accordion plugin for WordPress (versions ≤ 3.5.7)
  • WordPress sites with the expand-maker plugin installed and active
  • WordPress installations where non-admin roles have been granted plugin access via yrm-user-roles

Discovery Timeline

  • 2026-05-20 - CVE-2026-7472 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-7472

Vulnerability Analysis

The vulnerability resides in ReadMoreData.php within the getAllDataByLimit() and getAccordionAllDataByLimit() functions. The plugin reads the $_GET['orderby'] value from the request, passes it through esc_attr(), and forwards it to database query construction. esc_attr() is an HTML attribute-escaping function and provides no SQL safety. The value is then processed by esc_sql() and concatenated directly into the ORDER BY fragment of a SQL query before $wpdb->prepare() is invoked.

Root Cause

The root cause is the misuse of esc_sql() in an unquoted SQL context. esc_sql() escapes only single quotes, double quotes, NUL bytes, and backslashes — characters that have no syntactic meaning inside an unquoted ORDER BY clause. Because the attacker-controlled value is concatenated without surrounding quotes, no escaping occurs that would block SQL keywords, parentheses, or subqueries. WordPress documentation explicitly warns that esc_sql() is insufficient for identifiers or ORDER BY values, which require $wpdb->prepare() with %i placeholders or strict allowlisting.

Attack Vector

An authenticated attacker with administrator access, or a lower-privileged role explicitly permitted via the yrm-user-roles setting, sends a crafted GET request to the plugin's admin listing pages (views/readMorePagesView.php or views/accordionBuilder/list.php). The orderby parameter carries a payload such as (SELECT SLEEP(5)) or a conditional subquery like (CASE WHEN (SUBSTRING((SELECT user_pass FROM wp_users LIMIT 1),1,1)='a') THEN SLEEP(5) ELSE 0 END). The server's response delay reveals one bit of data per request, enabling byte-by-byte extraction of credential hashes and other secrets.

No verified proof-of-concept code is available. See the Wordfence Vulnerability Report and the vulnerable code in ReadMoreData.php for technical details.

Detection Methods for CVE-2026-7472

Indicators of Compromise

  • Authenticated HTTP GET requests to WordPress admin pages containing orderby parameter values with SQL keywords such as SLEEP, BENCHMARK, SELECT, CASE, WHEN, or unbalanced parentheses.
  • Repeated requests from the same authenticated session to readMorePagesView.php or accordionBuilder/list.php with sequentially varying orderby payloads, indicating bit-by-bit data extraction.
  • Database query logs containing unquoted SQL expressions in ORDER BY clauses originating from the expand-maker plugin.

Detection Strategies

  • Inspect WordPress access logs and web application firewall logs for orderby parameter values containing parentheses, SQL functions, or arithmetic operators.
  • Enable MySQL slow query logging and correlate queries exceeding response thresholds with the corresponding HTTP request that triggered them.
  • Deploy WAF rules that block SQL keywords appearing in orderby, order, or similar sort parameters on WordPress administrative endpoints.

Monitoring Recommendations

  • Monitor administrator and editor account activity for unusual sequences of requests to plugin admin pages.
  • Alert on response-time anomalies on /wp-admin/ endpoints, which can indicate time-based blind injection probing.
  • Track installation and version state of the expand-maker plugin across WordPress fleets and flag any instance running version 3.5.7 or earlier.

How to Mitigate CVE-2026-7472

Immediate Actions Required

  • Identify all WordPress sites running the Read More & Accordion (expand-maker) plugin and confirm the installed version.
  • Update the plugin to a patched release once published by the vendor, or deactivate and remove it if a patch is unavailable.
  • Audit the yrm-user-roles setting and revoke plugin admin access from any role that does not strictly require it.
  • Rotate WordPress administrator passwords and invalidate active sessions if exploitation is suspected.

Patch Information

At the time of publication, no fixed version had been identified in the available references. Administrators should consult the Wordfence Vulnerability Report and the WordPress.org plugin page for the latest patched release.

Workarounds

  • Deactivate the Read More & Accordion plugin until a patched version is available.
  • Restrict the yrm-user-roles setting to administrators only, reducing the population of accounts able to reach the vulnerable code path.
  • Deploy a web application firewall rule that rejects requests to plugin admin views containing non-allowlisted characters in the orderby parameter.
  • Apply principle of least privilege to the database user configured in wp-config.php to limit data accessible through injection.
bash
# Example WAF rule (ModSecurity) to block SQL keywords in orderby parameter
SecRule ARGS:orderby "@rx (?i)(select|sleep|benchmark|union|case\s+when|\(|\))" \
    "id:1002026,phase:2,deny,status:403,log,msg:'CVE-2026-7472 SQLi attempt in orderby'"

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 Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin View Snippet

  • WordPress Plugin View Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin View Snippet

  • WordPress Plugin View Snippet

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3985: Creative Mail WordPress Plugin SQLi Flaw

  • CVE-2026-9010: WordPress Boost Plugin SQLi Vulnerability

  • CVE-2026-8685: Infility Global Plugin SQLi Vulnerability

  • CVE-2026-8912: Contest Gallery WordPress SQLi 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