CVE-2009-3459 CrowdStrike LogScale · LogScale

Detect Adobe Acrobat and Reader Heap-Based Buffer Overflow (CVE-2009-3459) in CrowdStrike LogScale

Detects exploitation of a heap-based buffer overflow vulnerability in Adobe Acrobat and Reader (CVE-2009-3459). This CISA KEV vulnerability allows attackers to execute arbitrary code via a crafted PDF file. Exploitation typically results in AcroRd32.exe or Acrobat.exe spawning unexpected child processes, making unusual network connections, or writing executable payloads to disk.

MITRE ATT&CK

Tactic
Initial Access Execution Defense Evasion

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=ProcessRollup2
| ParentBaseFileName IN ["AcroRd32.exe", "Acrobat.exe", "AcroBroker.exe"]
| ImageFileName IN ["cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "rundll32.exe", "regsvr32.exe", "certutil.exe", "bitsadmin.exe"]
| eval DetectionReason="Adobe Reader spawned shell or LOLBin"
| table _time, ComputerName, UserName, ParentBaseFileName, ImageFileName, CommandLine, DetectionReason
| sort by _time desc

// Alternate: network-based detection
// #event_simpleName=NetworkConnectIP4
// | ImageFileName IN ["AcroRd32.exe", "Acrobat.exe"]
// | RemotePort IN [80, 443, 4444, 8080, 8443]
// | NOT cidrMatch(RemoteIP, "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16")
// | table _time, ComputerName, UserName, ImageFileName, RemoteIP, RemotePort
critical severity high confidence

CrowdStrike Falcon query detecting Adobe Reader or Acrobat spawning shell interpreters or living-off-the-land binaries (LOLBins), consistent with CVE-2009-3459 heap overflow exploitation.

Data Sources

CrowdStrike Falcon SensorCrowdStrike ProcessRollup2 eventsCrowdStrike NetworkConnectIP4 events

Required Tables

ProcessRollup2NetworkConnectIP4

False Positives & Tuning

  • Adobe Acrobat Pro features that use certutil for certificate validation
  • Enterprise endpoint management tools spawning processes under Adobe Reader context
  • PDF digital signature workflows invoking system certificate utilities

Other platforms for CVE-2009-3459


Testing Methodology

Validate this detection against 4 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 Adobe Reader Spawning cmd.exe

    Expected signal: Sysmon Event ID 1: process creation with ParentImage matching AcroRd32.exe and Image matching cmd.exe; DeviceProcessEvents in Defender with InitiatingProcessFileName=AcroRd32.exe and FileName=cmd.exe.

  2. Test 2Simulate Adobe Reader Writing Executable to Temp

    Expected signal: Sysmon Event ID 11: TargetFilename=C:\Temp\payload.exe, Image matching AcroRd32.exe; DeviceFileEvents in Defender with InitiatingProcessFileName=AcroRd32.exe and FileName=payload.exe.

  3. Test 3Simulate Adobe Reader Making Outbound Network Connection

    Expected signal: Sysmon Event ID 3: Image matching AcroRd32.exe, DestinationIp=93.184.216.34, DestinationPort=80; DeviceNetworkEvents in Defender with InitiatingProcessFileName=AcroRd32.exe and non-RFC1918 RemoteIP.

  4. Test 4Open Malicious PDF in Sandboxed Adobe Reader (Lab Only)

    Expected signal: Heap spray artifacts in AcroRd32.exe memory; child process creation events; potential shellcode execution visible in memory forensics; network connection attempt if payload is weaponized.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections