SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-15335

HIGH · CVSS 7.5 EPSS 0.48%

Source: NVD + CISA KEV + EPSS · Published 2026-07-11 · Last synced 2026-08-10

CyberRota Analysis

AI-Generated

The Booking Package plugin for WordPress is susceptible to SQL Injection through the 'email' form parameter in versions up to 1.7.20, allowing unauthenticated attackers to manipulate SQL queries and potentially extract sensitive database information. Although the impact is somewhat mitigated by the is_email validation, the vulnerability remains critical due to the lack of proper input sanitization and authentication on the affected REST API endpoint. WordPress site administrators using this plugin should prioritize immediate updates to safeguard against potential exploitation.

CVE
CVE-2026-15335
Severity
HIGH
CVSS
7.5
EPSS
0.48%
WordPress

Original NVD Description

The Booking Package plugin for WordPress is vulnerable to generic SQL Injection via 'email' Form Parameter (form<N>) in all versions up to, and including, 1.7.20 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database. The vulnerable REST API endpoint /wp-json/booking-package/v1/request is registered with permission_callback: __return_true and wp_magic_quotes does not apply to REST-sourced $_POST values, meaning single quotes in the payload reach the SQL sink intact without any authentication requirement. The impact of this is severely limited as the vulnerable parameter goes through is_email.