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

CVE-2025-67159

Published: 2026-01-02 17:16:23
Last Modified: 2026-01-30 01:44:46

Description

Vatilon v1.12.37-20240124 was discovered to transmit user credentials in plaintext.

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
#!/usr/bin/env python3 """ CVE-2025-67159 PoC - Vatilon Plaintext Credential Transmission Note: This PoC is for educational and authorized testing purposes only. """ import socket import struct def sniff_credential(): """ Simulate credential sniffing from plaintext transmission This demonstrates the vulnerability where credentials are sent in cleartext """ print("[+] CVE-2025-67159 - Vatilon Plaintext Credential Sniffing PoC") print("=" * 60) print("\n[!] Warning: Only use on networks you have permission to monitor") # Simulated captured packet data (in real attack, this would be captured from network) simulated_packet = { 'src_ip': '192.168.1.100', 'dst_ip': '10.0.0.50', 'protocol': 'HTTP', 'username': 'admin', 'password': 'P@ssw0rd123', 'transmission': 'PLAINTEXT' } print(f"\n[+] Captured authentication packet:") print(f" Source IP: {simulated_packet['src_ip']}") print(f" Destination IP: {simulated_packet['dst_ip']}") print(f" Protocol: {simulated_packet['protocol']}") print(f" Username: {simulated_packet['username']}") print(f" Password: {simulated_packet['password']}") print(f" Transmission: {simulated_packet['transmission']}") print("\n[+] Attack successful - Credentials captured in plaintext!") print("\n[!] Mitigation: Enable TLS/SSL encryption for all authentication traffic") print("[!] Upgrade Vatilon to patched version") if __name__ == "__main__": sniff_credential()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67159", "sourceIdentifier": "[email protected]", "published": "2026-01-02T17:16:23.433", "lastModified": "2026-01-30T01:44:46.417", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vatilon v1.12.37-20240124 was discovered to transmit user credentials in plaintext."}], "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-319"}]}], "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-67159", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}