SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-17582

MEDIUM · CVSS 4.9 EPSS 0.29%

Source: NVD + CISA KEV + EPSS · Published 2026-08-16 · Last synced 2026-09-15

CyberRota Analysis

AI-Generated

The Slider Hero plugin for WordPress is vulnerable to second-order SQL Injection, allowing authenticated attackers with administrator-level access to manipulate SQL queries through the qcld_sliderhero_duplicate() function. This vulnerability can lead to unauthorized data extraction from the database, posing a risk to sensitive information. WordPress site administrators using affected versions should prioritize patching to mitigate potential exploitation.

CVE
CVE-2026-17582
Severity
MEDIUM
CVSS
4.9
EPSS
0.29%
WordPress

Original NVD Description

The Slider Hero plugin for WordPress is vulnerable to second-order SQL Injection in versions up to, and including, 9.1.7 via the qcld_sliderhero_duplicate() function. Slide data (description, title, btn, btn2, image_link, custom, etc.) is stored safely via $wpdb->update() with %s placeholders in the qchero_save_image AJAX handler, but when an administrator triggers the 'heroduplicateslider' task, qcld_sliderhero_duplicate() re-reads every slide column and concatenates the raw values directly into an INSERT VALUES tuple that is then executed with $wpdb->query() — with no $wpdb->prepare(), esc_sql(), or _real_escape_string in between. This makes it possible for authenticated attackers, with administrator-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.