Cyber Resilience

CVE-2025-14452

High

Published: 19 February 2026

Published
19 February 2026
Modified
15 April 2026
KEV Added
Patch
CVSS Score v3.1 7.2 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
EPSS Score 0.0015 35.9th percentile
Risk Priority 14 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-14452 is a high-severity Cross-site Scripting (CWE-79) vulnerability in Wordpress (inferred from references). Its CVSS base score is 7.2 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 35.9th 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 SI-10 (Information Input Validation) and SI-15 (Information Output Filtering).

Deeper analysis

CVE-2025-14452 is a reflected cross-site scripting (XSS) vulnerability in the WP Customer Reviews plugin for WordPress, affecting all versions up to and including 3.7.5. The flaw stems from insufficient input sanitization and output escaping of the 'wpcr3_fname' parameter, allowing arbitrary web scripts to be injected into pages. It is classified under CWE-79 with a CVSS v3.1 base score of 7.2 (AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N) and was published on 2026-02-19.

Unauthenticated attackers can exploit this vulnerability over the network with low complexity and no privileges required. By crafting malicious payloads in the 'wpcr3_fname' parameter, they can trick users into executing injected scripts through actions like clicking a crafted link, potentially leading to low confidentiality and integrity impacts with changed scope.

References point to specific code locations in the plugin's tagged 3.7.4 and trunk versions, including lines 205 and 835 in wp-customer-reviews-3.php, as well as changeset 3417719, indicating areas of vulnerable handling and likely remediation in newer code. Security practitioners should update to versions beyond 3.7.5 where input validation has been addressed.

EU & UK References

Vulnerability details

The WP Customer Reviews plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'wpcr3_fname' parameter in all versions up to, and including, 3.7.5 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers…

more

to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.

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.007 JavaScript Execution
Adversaries may abuse various implementations of JavaScript for execution.
Why these techniques?

Reflected XSS in public-facing WordPress plugin directly enables exploitation of the web app (T1190) and arbitrary JavaScript execution in victim browsers via crafted links (T1059.007).

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

CVEs Like This One

CVE-2026-3231Shared CWE-79
CVE-2025-23481Shared CWE-79
CVE-2025-69302Shared CWE-79
CVE-2025-23734Shared CWE-79
CVE-2025-23571Shared CWE-79
CVE-2025-65110Shared CWE-79
CVE-2026-24948Shared CWE-79
CVE-2025-27352Shared CWE-79
CVE-2025-30349Shared CWE-79
CVE-2026-3876Shared CWE-79

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 requires validation of untrusted input such as the wpcr3_fname parameter before processing, preventing the reflected XSS payload from being accepted.

prevent

Mandates filtering or encoding of information output to users, addressing the missing output escaping that allows injected scripts to execute in the victim's browser.

preventdetect

Provides mechanisms to detect and block malicious code/scripts delivered via web parameters, offering secondary protection against successful XSS exploitation.

References