mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
title: Process Dump via Comsvcs DLL
|
|
id: 09e6d5c0-05b8-4ff8-9eeb-043046ec774c
|
|
status: experimental
|
|
description: Detects process memory dump via comsvcs.dll and rundll32
|
|
references:
|
|
- https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/
|
|
- https://twitter.com/SBousseaden/status/1167417096374050817
|
|
author: Modexp (idea)
|
|
date: 2019/09/02
|
|
modified: 2020/09/05
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
rundll_image:
|
|
Image|endswith: '\rundll32.exe'
|
|
rundll_ofn:
|
|
OriginalFileName: 'RUNDLL32.EXE'
|
|
selection:
|
|
CommandLine|contains|all:
|
|
- 'comsvcs'
|
|
- 'MiniDump' #Matches MiniDump and MinidumpW
|
|
- 'full'
|
|
condition: (rundll_image or rundll_ofn) and selection
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
tags:
|
|
- attack.defense_evasion
|
|
- attack.t1218.011
|
|
- attack.credential_access
|
|
- attack.t1003.001
|
|
- attack.t1003 # an old one
|
|
falsepositives:
|
|
- unknown
|
|
level: medium
|