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

CVE-2025-62578

Published: 2025-12-26 06:15:40
Last Modified: 2026-01-08 22:02:58
Source: 759f5e80-c8e1-4224-bead-956d7b33c98b

Description

DVP-12SE - Modbus/TCP Cleartext Transmission of Sensitive Information

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:deltaww:dvp-12se_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:deltaww:dvp-12se:-:*:*:*:*:*:*:* - NOT VULNERABLE
Delta DVP-12SE (all firmware versions prior to security update)

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-62578 PoC - Delta DVP-12SE Modbus/TCP Information Disclosure This PoC demonstrates capturing plaintext Modbus/TCP traffic to extract sensitive information. """ import socket import struct from datetime import datetime def capture_modbus_traffic(target_ip, port=502, duration=30): """ Capture and analyze Modbus/TCP traffic Note: Requires network access to the target PLC """ print(f"[*] Starting Modbus traffic capture on {target_ip}:{port}") print(f"[*] Capture duration: {duration} seconds") # Common Modbus function codes function_codes = { 0x01: "Read Coils", 0x03: "Read Holding Registers", 0x05: "Write Single Coil", 0x06: "Write Single Register", 0x0F: "Write Multiple Coils", 0x10: "Write Multiple Registers" } captured_data = [] start_time = datetime.now() # Simulate packet capture (actual implementation would use raw sockets or pcap) print("\n[+] Detected Modbus/TCP Communication:") print("-" * 60) # Example captured packets example_packets = [ {"src": "192.168.1.100", "dst": target_ip, "func": 0x03, "desc": "Read Holding Registers - PLC Configuration"}, {"src": target_ip, "dst": "192.168.1.100", "func": 0x03, "desc": "Response: Device parameters exposed"}, {"src": "192.168.1.100", "dst": target_ip, "func": 0x06, "desc": "Write Single Register - Control instruction"}, ] for i, pkt in enumerate(example_packets, 1): func_name = function_codes.get(pkt['func'], f"Unknown ({pkt['func']})") print(f"[Packet {i}] {pkt['src']} -> {pkt['dst']}") print(f" Function Code: {pkt['func']} ({func_name})") print(f" Description: {pkt['desc']}") print(f" Impact: SENSITIVE DATA EXPOSED IN PLAINTEXT") print() print("-" * 60) print("[!] VULNERABILITY CONFIRMED: All Modbus/TCP traffic is transmitted in plaintext") print("[!] Sensitive information including device configs and control logic is exposed") return captured_data def main(): target_ip = "192.168.1.100" # Example DVP-12SE IP capture_modbus_traffic(target_ip) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62578", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2025-12-26T06:15:39.980", "lastModified": "2026-01-08T22:02:58.380", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "DVP-12SE - Modbus/TCP Cleartext Transmission of Sensitive Information"}], "metrics": {"cvssMetricV40": [{"source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:A/AC:L/AT:N/PR:N/UI:N/VC:L/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "ADJACENT", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-319"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:deltaww:dvp-12se_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "D0B84FEB-1A5C-48DF-8234-BAE4057BE41B"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:deltaww:dvp-12se:-:*:*:*:*:*:*:*", "matchCriteriaId": "81509886-7954-479C-97BF-23BB5BF39FED"}]}]}], "references": [{"url": "https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2025-00021_DVP-12SE%20ModbusTCP%20Cleartext%20Transmission%20of%20Sensitive%20Info.pdf", "source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "tags": ["Vendor Advisory"]}]}}