CVE-2009-1537

Microsoft DirectX NULL Byte Overwrite Vulnerability (CVE-2009-1537)

Initial Access Execution Last updated:

CVE-2009-1537 is a NULL byte overwrite vulnerability in Microsoft DirectX (quartz.dll) that can be exploited via a maliciously crafted QuickTime media file. Successful exploitation allows remote code execution in the context of the logged-on user. This vulnerability is listed in the CISA Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Addressed in MS09-028.

Vulnerability Intelligence

KEV — Known Exploited

Affected Software

Vendor
Microsoft
Product
DirectX

Timeline

Disclosed
May 20, 2026

CVSS

Unscored
Write-up coming soon

What is CVE-2009-1537 Microsoft DirectX NULL Byte Overwrite Vulnerability (CVE-2009-1537)?

Microsoft DirectX NULL Byte Overwrite Vulnerability (CVE-2009-1537) (CVE-2009-1537) maps to the Initial Access and Execution tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for Microsoft DirectX NULL Byte Overwrite Vulnerability (CVE-2009-1537), covering the data sources and telemetry it touches: Microsoft Defender for Endpoint, Microsoft Sentinel DeviceProcessEvents, Microsoft Sentinel DeviceFileEvents. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Execution
Microsoft Sentinel / Defender
kusto
union DeviceProcessEvents, DeviceFileEvents
| where TimeGenerated > ago(7d)
| where (
    (ActionType == "ProcessCreated" and InitiatingProcessFileName =~ "quartz.dll") or
    (FileName =~ "quartz.dll" and ActionType in ("FileModified", "FileCreated")) or
    (InitiatingProcessCommandLine has_any (".mov", ".qt", ".mqv") and ProcessCommandLine has_any ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe"))
)
| extend RiskIndicator = case(
    InitiatingProcessCommandLine has_any (".mov", ".qt", ".mqv"), "QuickTime media file triggered shell process",
    FileName =~ "quartz.dll" and ActionType == "FileModified", "DirectX quartz.dll modified",
    "DirectX related activity"
)
| project TimeGenerated, DeviceName, AccountName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, RiskIndicator
| sort by TimeGenerated desc

Detects process and file activity consistent with exploitation of CVE-2009-1537 via malicious QuickTime media files triggering DirectX quartz.dll. Looks for shell processes spawned from media file contexts and unexpected quartz.dll modifications.

critical severity medium confidence

Data Sources

Microsoft Defender for Endpoint Microsoft Sentinel DeviceProcessEvents Microsoft Sentinel DeviceFileEvents

Required Tables

DeviceProcessEvents DeviceFileEvents

False Positives

  • Legitimate QuickTime or media player software updating quartz.dll during patching
  • Video editing applications that legitimately invoke shell processes during export
  • Software installation routines that modify DirectX components
  • Antivirus or EDR tools scanning media files and spawning child processes

Sigma rule & cross-platform mapping

The detection logic for Microsoft DirectX NULL Byte Overwrite Vulnerability (CVE-2009-1537) (CVE-2009-1537) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  category: process_creation
  product: windows

Browse the community-maintained Sigma rules for this technique:


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate QuickTime File Opening via Windows Media Player

    Expected signal: Sysmon Event ID 1 showing wmplayer.exe process creation with .mov file argument; DeviceProcessEvents in Defender for Endpoint capturing InitiatingProcessFileName=wmplayer.exe

  2. Test 2Simulate Shell Process Spawn from Media Player Context

    Expected signal: Sysmon Event ID 1 with ParentImage containing wmplayer.exe and Image=cmd.exe; command line output file created in C:\AtomicTests\

  3. Test 3Simulate quartz.dll File Modification Event

    Expected signal: Sysmon Event ID 11 (FileCreate) with TargetFilename matching quartz.dll pattern; DeviceFileEvents showing FileName=quartz.dll with ActionType=FileCreated

Unlock Pro Content

Get the full detection package for CVE-2009-1537 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections