CVE-2026-7472 MEDIUM

CVE-2026-7472: Read More & Accordion <= 3.5.7 - Authenticated (Administrator+) SQL Injection via 'orderby' Parameter

Vendor Edmonparker
Product Read More & Accordion
Weakness CWE-89 · SQLi
Published May 20, 2026
Last update May 20, 2026

CVSS base score

4.9/10
Attack vector Network
Attack complexity Low
Privileges required High
User interaction None
Confidentiality High
Integrity None

CVSS vector

CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N

What the vulnerability does

01Description

The Read More & Accordion plugin for WordPress is vulnerable to time-based blind SQL Injection via the 'orderby' parameter in all versions up to, and including, 3.5.7. This is due to the use of esc_sql() without surrounding the value in quotes in an ORDER BY clause inside the getAllDataByLimit() and getAccordionAllDataByLimit() functions in ReadMoreData.php. The user-supplied $_GET['orderby'] value is only processed through esc_attr() (an HTML-escaping function) before being passed to these database functions, where esc_sql() is applied but the value is directly concatenated—unquoted—into the ORDER BY fragment of the SQL query before $wpdb->prepare() is called. Because esc_sql() only escapes quote characters and backslashes (which are irrelevant in an unquoted ORDER BY context), an attacker can inject arbitrary SQL expressions such as (SELECT SLEEP(5)) or conditional subqueries to perform time-based blind data extraction. This makes it possible for authenticated attackers with administrator-level access or above (or any role explicitly permitted access to the plugin's admin pages via the yrm-user-roles setting) to extract sensitive data from the database, including administrator credential hashes.

Explanation of Vulnerability in Simple Terms

02Summary

The Read More & Accordion plugin contains a SQL injection vulnerability in versions up to 3.5.7. An authenticated administrator can craft malicious input to execute arbitrary SQL queries against the site database. This allows reading sensitive data such as user credentials and configuration details. Update to a version newer than 3.5.7 to resolve the issue.

What an attacker can do

03Attacker Capabilities

Read sensitive data from the site database, including user credentials and configuration.

Potential impact on your site

04Site Impact

An admin account compromise could expose all user data and site secrets stored in the database.

Conditions required to exploit

05Prerequisites

Attacker must have administrator-level access to the WordPress site.

Key dates

06Disclosure timeline

May 20, 2026 CVE published
May 20, 2026 Record updated