CVE-2026-17550 Overview
CVE-2026-17550 is an out-of-bounds read vulnerability in Autodesk AutoCAD triggered when the application parses a maliciously crafted DWG or DXF file. An attacker who convinces a user to open a specially prepared drawing file can cause the application to read memory outside the intended buffer boundaries. Successful exploitation can crash the AutoCAD process or disclose sensitive information from process memory. The vulnerability is classified under [CWE-125] (Out-of-Bounds Read) and requires local file access combined with user interaction. Autodesk documented the issue in Autodesk Security Advisory ADSK-SA-2026-0009.
Critical Impact
A crafted DWG or DXF file processed by AutoCAD can crash the application or leak sensitive in-process memory to an attacker.
Affected Products
- Autodesk AutoCAD (see ADSK-SA-2026-0009 for exact versions)
- Autodesk DWG TrueView (DWG/DXF parser component)
- Autodesk Access (update delivery client)
Discovery Timeline
- 2026-07-29 - CVE-2026-17550 published to NVD
- 2026-07-30 - Last updated in NVD database
Technical Details for CVE-2026-17550
Vulnerability Analysis
The vulnerability lies in the DWG/DXF file parsing logic of Autodesk AutoCAD. DWG is Autodesk's proprietary binary CAD format, and DXF is its ASCII/binary interchange counterpart. Both formats consist of structured records containing offsets, lengths, and object references. When parsing a crafted file, AutoCAD reads beyond the boundaries of an allocated buffer, exposing adjacent process memory to controlled code paths.
The out-of-bounds condition can either crash the process, producing a denial-of-service outcome, or leak in-memory data such as pointers, heap contents, or user document fragments back through error handling or subsequent object rendering. Memory disclosure can weaken address space layout randomization (ASLR) and enable exploitation chains that pair this bug with a write primitive elsewhere.
Root Cause
The root cause is missing or incorrect bounds validation on a length or index field within a DWG or DXF record. The parser trusts attacker-controlled size or offset values and dereferences memory outside the source buffer, matching the [CWE-125] pattern.
Attack Vector
Exploitation requires local file access and user interaction. An attacker delivers a crafted .dwg or .dxf file through email, a shared drive, a project collaboration platform, or a compromised design library. When the victim opens the file in AutoCAD, or previews it through DWG TrueView, the parser executes the malformed record and triggers the out-of-bounds read.
No verified public proof-of-concept code is available for CVE-2026-17550. Refer to the Autodesk advisory for authoritative technical details.
Detection Methods for CVE-2026-17550
Indicators of Compromise
- Unexpected AutoCAD (acad.exe) or DWG TrueView crashes correlated with opening externally sourced .dwg or .dxf files.
- Windows Error Reporting (WER) or .dmp files generated by AutoCAD referencing access violations during file parse routines.
- DWG or DXF files received from untrusted senders, staged in user download or temp directories, and opened outside sanctioned project workflows.
Detection Strategies
- Monitor endpoint telemetry for AutoCAD process crashes tied to child parsing threads and access-violation exception codes such as 0xC0000005.
- Alert on DWG or DXF files arriving through email gateways or web downloads and being opened by CAD applications within a short interval.
- Hunt for anomalous memory read patterns or unusual heap access originating from AutoCAD's file-parsing modules.
Monitoring Recommendations
- Enable full process telemetry on engineering workstations running Autodesk products and forward crash and exception events to a central log store.
- Track file provenance metadata (Mark-of-the-Web) on inbound CAD files and flag execution attempts on files lacking a trusted origin.
- Correlate AutoCAD crashes with recent file-open events to identify which drawing triggered the fault for forensic capture.
How to Mitigate CVE-2026-17550
Immediate Actions Required
- Apply the fixed AutoCAD version identified in Autodesk Security Advisory ADSK-SA-2026-0009 as soon as it is available in your environment.
- Instruct CAD users not to open DWG or DXF files received from untrusted or unverified sources.
- Inventory endpoints running vulnerable AutoCAD and DWG TrueView builds and prioritize patch deployment.
Patch Information
Autodesk has published fix guidance in ADSK-SA-2026-0009. Updates are delivered through Autodesk Access. Administrators should push the update through Autodesk Access or standard software distribution tooling and confirm the installed build matches the fixed version listed in the advisory.
Workarounds
- Restrict opening of DWG and DXF files to those originating from trusted internal repositories and signed vendor sources.
- Configure email and web gateways to inspect, sandbox, or block inbound CAD file attachments from external senders.
- Use the Windows Attack Surface Reduction and Protected View equivalents at the file-share layer to require user acknowledgment before AutoCAD parses external drawings.
# Query installed AutoCAD version on Windows to verify patch status
reg query "HKLM\SOFTWARE\Autodesk\AutoCAD" /s /v ProductName
reg query "HKLM\SOFTWARE\Autodesk\AutoCAD" /s /v Release
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

