Cyber Resilience

CVE-2026-6518

High

Published: 18 April 2026

Published
18 April 2026
Modified
22 April 2026
KEV Added
Patch
CVSS Score v3.1 8.8 CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0087 54.0th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-6518 is a high-severity Unrestricted Upload of File with Dangerous Type (CWE-434) vulnerability in Wordpress (inferred from references). Its CVSS base score is 8.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked in the top 46.0% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 AC-6 (Least Privilege) and CM-11 (User-installed Software).

Deeper analysis

CVE-2026-6518 is an arbitrary file upload vulnerability leading to remote code execution (RCE) in the CMP – Coming Soon & Maintenance Plugin by NiteoThemes for WordPress. All versions up to and including 4.1.16 are affected via the `cmp_theme_update_install` AJAX action. The flaw stems from the function checking only for the `publish_pages` capability, available to Editors and above, rather than the more restrictive `manage_options` required for Administrators. Additionally, there is no proper validation of the user-supplied file URL and no verification of the downloaded file's content before extraction, with a CVSS v3.1 base score of 8.8 (AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H) and mapped to CWE-434 (Unrestricted Upload of File with Dangerous Type).

Authenticated attackers with Administrator-level access can exploit this vulnerability over the network with low complexity. By supplying a malicious ZIP file URL under their control, they can force the WordPress server to download and extract the archive into the web-accessible directory `wp-content/plugins/cmp-premium-themes/`, enabling RCE. Editors possess the `publish_pages` capability but cannot exploit it due to the absence of a nonce verification for their role.

The WordPress plugin repository trac shows the patch introduced in version 4.1.17, with relevant code changes visible in lines around 1421, 1437, and 1447 of niteo-cmp.php, and the full changeset comparing tags 4.1.16 to 4.1.17. Wordfence's threat intelligence advisory provides further details on the vulnerability (https://www.wordfence.com/threat-intel/vulnerabilities/id/d6fb275b-dbba-46df-b170-977ef4a84c4c?source=cve). Security practitioners should update the plugin to 4.1.17 or later and review access to the `publish_pages` capability.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

The CMP – Coming Soon & Maintenance Plugin by NiteoThemes plugin for WordPress is vulnerable to arbitrary file upload and remote code execution in all versions up to, and including, 4.1.16 via the `cmp_theme_update_install` AJAX action. This is due to…

more

the function only checking for the `publish_pages` capability (available to Editors and above) instead of `manage_options` (Administrators only), combined with a lack of proper validation on the user-supplied file URL and no verification of the downloaded file's content before extraction. This makes it possible for authenticated attackers, with Administrator-level access and above, to force the server to download and extract a malicious ZIP file from a remote attacker-controlled URL into a web-accessible directory (`wp-content/plugins/cmp-premium-themes/`), resulting in remote code execution. Due to the lack of a nonce for Editors, they are unable to exploit this vulnerability.

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.
T1505.003 Web Shell Persistence
Adversaries may backdoor web servers with web shells to establish persistent access to systems.
Why these techniques?

Arbitrary file upload in public-facing WordPress plugin allows malicious ZIP download/extraction to web dir for RCE, directly enabling T1190 (Exploit Public-Facing Application) and T1100 (Web Shell deployment).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2025-22654Shared CWE-434
CVE-2025-11948Shared CWE-434
CVE-2025-67260Shared CWE-434
CVE-2025-28915Shared CWE-434
CVE-2023-53956Shared CWE-434
CVE-2025-6058Shared CWE-434
CVE-2021-47819Shared CWE-434
CVE-2025-7852Shared CWE-434
CVE-2026-4883Shared CWE-434
CVE-2019-25630Shared CWE-434

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 addresses the lack of proper validation on the user-supplied file URL and absence of verification of the downloaded file's content before extraction, preventing arbitrary malicious ZIP uploads.

prevent

Mitigates the insufficient access control by enforcing least privilege, requiring 'manage_options' capability for Administrators only instead of the overly permissive 'publish_pages' available to Editors.

prevent

Prohibits and scans user-supplied software like the malicious ZIP extracted into the web-accessible plugins directory, preventing unauthorized installation leading to RCE.

References