Cyber Resilience

CVE-2025-6754

High

Published: 02 August 2025

Published
02 August 2025
Modified
15 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.0039 60.7th percentile
Risk Priority 18 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-6754 is a high-severity Missing Authorization (CWE-862) vulnerability in Wordpress (inferred from references). Its CVSS base score is 8.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked in the top 39.3% 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-3 (Access Enforcement) and AC-6 (Least Privilege).

Deeper analysis

CVE-2025-6754 is a privilege escalation vulnerability in the SEO Metrics plugin for WordPress, affecting all versions up to and including 1.0.15. The flaw arises from missing authorization checks in the seo_metrics_handle_connect_button_click() AJAX handler and the seo_metrics_handle_custom_endpoint() function, classified under CWE-862 (Missing Authorization). Published on 2025-08-02, it carries 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), indicating high severity due to its potential for significant confidentiality, integrity, and availability impacts.

The vulnerability can be exploited by a subscriber-level user with low privileges over the network, requiring low complexity and no user interaction. The attacker first triggers the AJAX handler, which only verifies a nonce without validating the caller's capabilities, to retrieve a token. Using this token, the attacker accesses the custom endpoint to obtain full administrator cookies, achieving complete privilege escalation from subscriber to administrator access.

References provided include source code files from the WordPress plugin trac repository—common-functions.php, endpoint.php, seo-metrics.php, and welcome-page.php—along with changeset 3343566 for the seo-metrics-helper plugin. Security practitioners should examine these resources to identify the vulnerable code paths and verify any remediation commits or updates in newer plugin versions.

EU & UK References

Vulnerability details

The SEO Metrics plugin for WordPress is vulnerable to Privilege Escalation due to missing authorization checks in both the seo_metrics_handle_connect_button_click() AJAX handler and the seo_metrics_handle_custom_endpoint() function in all versions up to, and including, 1.0.15. Because the AJAX action only verifies…

more

a nonce, without checking the caller’s capabilities, a subscriber-level user can retrieve the token and then access the custom endpoint to obtain full administrator cookies.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
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.
Why these techniques?

Missing authorization in public-facing WordPress plugin directly enables remote privilege escalation from low-privileged account to administrator.

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

CVEs Like This One

CVE-2026-4100Shared CWE-862
CVE-2026-32501Shared CWE-862
CVE-2025-31194Shared CWE-862
CVE-2026-6963Shared CWE-862
CVE-2024-9195Shared CWE-862
CVE-2025-6380Shared CWE-862
CVE-2026-0506Shared CWE-862
CVE-2025-2110Shared CWE-862
CVE-2025-27270Shared CWE-862
CVE-2026-6510Shared CWE-862

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

AC-3 requires enforcement of approved authorizations for logical access, directly addressing the missing authorization checks in the plugin's AJAX handler and custom endpoint that allow privilege escalation.

prevent

AC-6 enforces least privilege, preventing a subscriber-level user from escalating to administrator access via the vulnerable token retrieval and cookie theft mechanisms.

prevent

SI-2 mandates timely identification, reporting, and correction of system flaws, directly mitigating this specific missing authorization vulnerability by requiring plugin updates or patches.

References