SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-12918

MEDIUM · CVSS 4.9 EPSS 0.32%

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

CyberRota Analysis

AI-Generated

The Mail Mint plugin for WordPress is vulnerable to a second-order SQL injection through the 'recipients' parameter, affecting all versions up to 1.24.1. Authenticated attackers with administrator-level access can exploit this vulnerability to inject and execute arbitrary SQL queries, potentially leading to the extraction of sensitive database information. WordPress site administrators using this plugin should prioritize immediate updates to mitigate the risk of data breaches.

CVE
CVE-2026-12918
Severity
MEDIUM
CVSS
4.9
EPSS
0.32%
WordPress

Original NVD Description

The Mail Mint – Email Marketing, Newsletter, Email Automation & WooCommerce Emails plugin for WordPress is vulnerable to generic SQL Injection via the 'recipients' parameter in all versions up to, and including, 1.24.1 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. 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. This is a second-order SQL injection: the malicious payload is first stored unsanitized via a POST request to /mrm/v1/campaigns/ (bypassing filter_recipients() validation because an int-cast of a string like '1) OR ...' evaluates to a real numeric ID), and is then triggered by a subsequent GET request to /mrm/v1/campaigns/{id} that deserializes the recipients and passes the raw id string through array_column() into the vulnerable query.