CVE-2020-9715 Sumo Logic CSE · Sumo

Detect Adobe Acrobat Use-After-Free Exploitation (CVE-2020-9715) in Sumo Logic CSE

Detects exploitation of CVE-2020-9715, a use-after-free vulnerability in Adobe Acrobat that allows arbitrary code execution. This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog and has been actively exploited in the wild. Attackers typically deliver malicious PDF documents that trigger memory corruption upon rendering, leading to code execution in the context of the Acrobat process.

MITRE ATT&CK

Tactic
Initial Access Execution Defense Evasion

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=windows/sysmon EventID=1
| parse field=Message "ParentImage: *\n" as ParentImage
| parse field=Message "Image: *\n" as ChildImage
| parse field=Message "CommandLine: *\n" as CommandLine
| where (ParentImage matches "*Acrobat*" or ParentImage matches "*AcroRd32*" or ParentImage matches "*AcroCEF*")
  and (ChildImage matches "*cmd.exe*" or ChildImage matches "*powershell.exe*" or ChildImage matches "*wscript.exe*" or ChildImage matches "*mshta.exe*" or ChildImage matches "*rundll32.exe*" or ChildImage matches "*certutil.exe*")
| project _messageTime, _sourceHost, ParentImage, ChildImage, CommandLine
| order by _messageTime desc
critical severity medium confidence

Sumo Logic query using Sysmon process creation events to detect Adobe Acrobat spawning suspicious child processes consistent with CVE-2020-9715 exploitation.

Data Sources

Sumo Logic Cloud SIEMSysmon Windows Agent

Required Tables

windows/sysmon

False Positives & Tuning

  • Acrobat-based document automation solutions invoking system utilities
  • Enterprise PDF workflows with legitimate subprocess chains
  • Developer environments testing Acrobat SDK integrations

Other platforms for CVE-2020-9715


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 Acrobat UAF — Malicious PDF Spawning cmd.exe

    Expected signal: Sysmon Event ID 1 showing cmd.exe with ParentImage path containing AcroRd32; DeviceProcessEvents entry in MDE with InitiatingProcessFileName = AcroRd32_sim.exe and FileName = cmd.exe

  2. Test 2Simulate Acrobat UAF — PowerShell Payload Execution

    Expected signal: Sysmon Event ID 1 for powershell.exe with suspicious parent; DeviceProcessEvents capturing PowerShell command-line with -ExecutionPolicy Bypass flag

  3. Test 3Simulate Acrobat UAF — Executable Drop to Temp Directory

    Expected signal: Sysmon Event ID 11 (FileCreate) for executable written to %TEMP%; Sysmon Event ID 1 for process launch from %TEMP% path; MDE DeviceFileEvents and DeviceProcessEvents entries

  4. Test 4Simulate Acrobat UAF — Outbound C2 Beacon Simulation

    Expected signal: Sysmon Event ID 3 (NetworkConnect) for outbound connection to non-RFC1918 IP on non-standard port; DeviceNetworkEvents in MDE capturing the destination IP and port

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections