Detection rules › Sigma

Renamed Procdump tool used for dumping LSASS process

Status
experimental
Severity
high
Log source
product windows, category process_creation
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where an attacker attempts to dump the LSASS process content using a renamed version of the Procdump tool.

MITRE ATT&CK coverage

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body yaml

title: Renamed Procdump tool used for dumping LSASS process
description: Detects scenarios where an attacker attempts to dump the LSASS process content using a renamed version of the Procdump tool.
references:
- https://www.intrinsec.com/apt27-analysis/
- https://learn.microsoft.com/en-us/sysinternals/downloads/procdump
tags:
- attack.execution
- attack.t1569.002
author: mdecrevoisier
status: experimental
logsource:
  product: windows
  category: process_creation
detection:
  selection_name:
    - Image|endswith: '\procdump.exe'
    - OriginalFilename: 'procdump.exe'

  selection_paramters:
    CommandLine|contains|all:
      - accepteula
      - '-ma' # Write a 'Full' dump file.
  condition: selection_name or selection_paramters
falsepositives:
- None 
level: high

Stages and Predicates

Stage 0: condition

selection_name or selection_paramters

Stage 1: selection_name

selection_name:
  - Image|endswith: '\procdump.exe'
  - OriginalFilename: 'procdump.exe'

Stage 2: selection_paramters

selection_paramters:
  CommandLine|contains|all:
    - accepteula
    - '-ma'

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
CommandLinematch
  • -ma corpus 3 (kusto 2, sigma 1)
  • accepteula corpus 7 (sigma 3, kusto 3, splunk 1)
Imageends_with
  • \procdump.exe corpus 4 (sigma 4)
OriginalFilenameeq
  • procdump.exe