Files
blue-team-tools/rules/windows/process_creation/win_susp_procdump.yml
T

34 lines
1.0 KiB
YAML
Raw Normal View History

title: Suspicious Use of Procdump
2019-11-12 23:12:27 +01:00
id: 5afee48e-67dd-4e03-a783-f74259dcf998
2019-11-18 15:26:55 +01:00
description: Detects suspicious uses of the SysInternals Procdump utility by using a special command line parameter in combination with the lsass.exe process. This way we're also able to catch cases in which the attacker has renamed the procdump executable.
status: experimental
references:
2019-03-02 00:14:20 +01:00
- Internal Research
author: Florian Roth
date: 2018/10/30
2019-10-14 16:21:37 +02:00
modified: 2019/10/14
tags:
2019-03-02 00:14:20 +01:00
- attack.defense_evasion
- attack.t1036
- attack.credential_access
- attack.t1003
2019-06-13 23:15:38 -05:00
- car.2013-05-009
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection1:
CommandLine:
- '* -ma *'
selection2:
CommandLine:
2019-10-14 17:26:33 +02:00
- '* lsass*'
2019-10-14 16:21:37 +02:00
selection3:
CommandLine:
- '* -ma ls*'
condition: ( selection1 and selection2 ) or selection3
falsepositives:
2019-03-02 00:14:20 +01:00
- Unlikely, because no one should dump an lsass process memory
- Another tool that uses the command line switches of Procdump
level: medium