Cyber Resilience

CVE-2026-2471

HighRCE

Published: 28 February 2026

Published
28 February 2026
Modified
15 April 2026
KEV Added
Patch
CVSS Score v3.1 7.5 CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
EPSS Score 0.0007 22.1th percentile
Risk Priority 15 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-2471 is a high-severity Deserialization of Untrusted Data (CWE-502) vulnerability in Wordpress (inferred from references). Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 22.1th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 CM-11 (User-installed Software) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2026-2471 is a PHP Object Injection vulnerability (CWE-502) affecting the WP Mail Logging plugin for WordPress in all versions up to and including 1.15.0. The issue arises in the BaseModel class constructor, which calls maybe_unserialize() on all properties retrieved from the database without validation, specifically via deserialization of untrusted input from the email log message field. This flaw enables the injection of arbitrary PHP objects when malicious data is logged from emails.

Unauthenticated attackers can exploit this vulnerability by submitting a double-serialized payload through any public-facing form that sends email, such as Contact Form 7. The payload is logged and then deserialized into an arbitrary PHP object when an administrator views the email log. While no known Property-Oriented Programming (POP) chain exists in the WP Mail Logging plugin itself—resulting in no direct impact—exploitation requires another plugin or theme on the target site to provide a POP chain, potentially allowing actions like deleting arbitrary files, retrieving sensitive data, or executing code. The CVSS v3.1 base score is 7.5 (AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H), reflecting high privileges required for impact due to admin interaction.

References include source code locations in the plugin's BaseModel.php, WPML_MailRenderer_AJAX_Handler.php, and WPML_Plugin.php files, as well as a WordPress plugin trac changeset comparing revisions (old: 3358334, new: 3464813) that likely documents the fix, and Wordfence threat intelligence detailing the vulnerability. No explicit patch version or mitigation steps are specified beyond these code changes.

EU & UK References

Vulnerability details

The WP Mail Logging plugin for WordPress is vulnerable to PHP Object Injection in all versions up to, and including, 1.15.0 via deserialization of untrusted input from the email log message field. This is due to the `BaseModel` class constructor…

more

calling `maybe_unserialize()` on all properties retrieved from the database without validation. This makes it possible for unauthenticated attackers to inject a PHP Object by submitting a double-serialized payload through any public-facing form that sends email (e.g., Contact Form 7). When the email is logged and subsequently viewed by an administrator, the malicious payload is deserialized into an arbitrary PHP object. No known POP chain is present in the vulnerable software, which means this vulnerability has no impact unless another plugin or theme containing a POP chain is installed on the site. If a POP chain is present via an additional plugin or theme installed on the target system, it may allow the attacker to perform actions like delete arbitrary files, retrieve sensitive data, or execute code depending on the POP chain present.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1505.003 Web Shell Persistence
Adversaries may backdoor web servers with web shells to establish persistent access to systems.
Why these techniques?

CVE enables T1190 via unauthenticated submission to public-facing WordPress forms triggering server-side deserialization; facilitates T1059.004 (Unix Shell) and T1505.003 (Web Shell) when a POP chain from another component achieves arbitrary code execution or file operations.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-24974Shared CWE-502
CVE-2025-1913Shared CWE-502
CVE-2026-32502Shared CWE-502
CVE-2026-24989Shared CWE-502
CVE-2025-26885Shared CWE-502
CVE-2025-30773Shared CWE-502
CVE-2026-25358Shared CWE-502
CVE-2026-29109Shared CWE-502
CVE-2024-11465Shared CWE-502
CVE-2024-55555Shared CWE-502

Affected Assets

Wordpress
inferred from references and description; NVD did not file a CPE for this CVE

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly remediates the PHP Object Injection vulnerability by patching the unsafe deserialization in the WP Mail Logging plugin's BaseModel class.

prevent

Validates untrusted inputs from public-facing forms like Contact Form 7 to block injection of double-serialized malicious payloads into email logs.

prevent

Prevents installation of the vulnerable WP Mail Logging plugin and other plugins or themes that provide exploitable POP chains.

References