Detection rules › Sigma
Renamed Procdump tool used for dumping LSASS process
Detects scenarios where an attacker attempts to dump the LSASS process content using a renamed version of the Procdump tool.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Execution | T1569.002 System Services: Service Execution |
Event coverage
| Provider | Event | Title |
|---|---|---|
| Sysmon | Event ID 1 | Process 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_paramtersStage 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.
| Field | Kind | Values |
|---|---|---|
CommandLine | match |
|
Image | ends_with |
|
OriginalFilename | eq |
|