SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-6453

MEDIUM · CVSS 6.5 EPSS 0.27%

Source: NVD + CISA KEV + EPSS · Published 2026-08-01 · Last synced 2026-08-31

CyberRota Analysis

AI-Generated

The CubeWP Framework plugin for WordPress is vulnerable to SQL Injection due to inadequate input sanitization in the cubewp_remove_relation() AJAX function, allowing attackers with subscriber-level access or higher to manipulate SQL queries. This vulnerability can lead to unauthorized data exposure or modification, posing a risk to the integrity of the database. WordPress site administrators using this plugin should prioritize patching to mitigate potential exploitation.

CVE
CVE-2026-6453
Severity
MEDIUM
CVSS
6.5
EPSS
0.27%
WordPress

Original NVD Description

The CubeWP Framework plugin for WordPress is vulnerable to SQL Injection in all versions up to and including 1.1.30. This is due to insufficient input sanitization in the cubewp_remove_relation() AJAX function, specifically the use of wp_unslash() on the relation_id parameter before interpolating it directly into a raw SQL query without using $wpdb->prepare(). The wp_unslash() call explicitly removes the backslash escaping that WordPress's wp_magic_quotes() adds to all $_POST data, neutralizing the only layer of SQL injection protection. The sanitize_text_field() function applied afterward offers no SQL protection. This makes it possible for authenticated attackers, with subscriber-level access and above, to append additional SQL queries to the existing query.