Cyber Resilience

CVE-2025-15440

High

Published: 11 February 2026

Published
11 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.0012 29.9th percentile
Risk Priority 14 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-15440 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 29.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-15440 is a stored cross-site scripting (XSS) vulnerability, classified under CWE-79, affecting the iONE360 configurator plugin for WordPress in all versions up to and including 2.0.57. The issue stems from insufficient input sanitization and output escaping in the Contact Form Parameters, enabling the injection of arbitrary web scripts into pages. Published on 2026-02-11, it carries 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).

Unauthenticated attackers can exploit this vulnerability over the network with low attack complexity and no privileges or user interaction required. By submitting malicious payloads via the Contact Form Parameters, they can store scripts on the server that execute in users' browsers whenever an affected page is accessed, potentially compromising session data or performing actions on behalf of the victim within the site's scope.

The provided references link to lines 50, 53, 56, 59, and 60 in the file admin/partials/configurator-ione360-admin-contact-form.php from plugin version 2.0.57, highlighting the specific code locations where input handling and output rendering lack proper sanitization and escaping. No explicit patch or mitigation details are detailed in the available information.

EU & UK References

Vulnerability details

The iONE360 configurator plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the Contact Form Parameters in all versions up to, and including, 2.0.57 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers…

more

to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

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.
T1185 Browser Session Hijacking Collection
Adversaries may take advantage of security vulnerabilities and inherent functionality in browser software to change content, modify user-behaviors, and intercept information as part of various browser session hijacking techniques.
Why these techniques?

Stored XSS in public-facing WordPress plugin directly enables exploitation of the web application (T1190) and arbitrary JavaScript execution in victim browsers (T1059.007), which facilitates session hijacking (T1185).

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

CVEs Like This One

CVE-2025-23722Shared CWE-79
CVE-2025-68874Shared CWE-79
CVE-2025-53231Shared CWE-79
CVE-2026-22524Shared CWE-79
CVE-2025-0521Shared CWE-79
CVE-2025-22766Shared CWE-79
CVE-2026-22867Shared CWE-79
CVE-2025-40587Shared CWE-79
CVE-2022-50905Shared CWE-79
CVE-2026-42685Shared 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 and sanitization of untrusted input such as Contact Form Parameters before storage, blocking the arbitrary script injection that enables this stored XSS.

prevent

Mandates output filtering/escaping of stored data before rendering in pages, directly mitigating the insufficient escaping flaw that allows injected scripts to execute.

preventdetect

Requires mechanisms to detect and block malicious code (including script payloads) in user-supplied content, providing secondary protection against the unauthenticated injection vector.

References