Files
blue-team-tools/rules/windows/sysmon/sysmon_cmstp_execution.yml
T

48 lines
1.2 KiB
YAML
Raw Normal View History

action: global
2018-07-16 02:53:41 +03:00
title: CMSTP Execution
2019-11-12 23:12:27 +01:00
id: 9d26fede-b526-4413-b069-6e24b6d07167
2018-07-16 15:55:31 -06:00
status: stable
2018-07-16 02:53:41 +03:00
description: Detects various indicators of Microsoft Connection Manager Profile Installer execution
2018-07-19 23:36:13 +02:00
tags:
- attack.defense_evasion
- attack.execution
- attack.t1191
- attack.g0069
2019-06-13 23:15:38 -05:00
- car.2019-04-001
2018-07-16 02:53:41 +03:00
author: Nik Seetharaman
references:
- http://www.endurant.io/cmstp/detecting-cmstp-enabled-code-execution-and-uac-bypass-with-sysmon/
detection:
condition: 1 of them
fields:
- CommandLine
- ParentCommandLine
- Details
falsepositives:
- Legitimate CMSTP use (unlikely in modern enterprise environments)
level: high
---
2018-07-16 02:53:41 +03:00
logsource:
product: windows
service: sysmon
detection:
# Registry Object Add
selection2:
EventID: 12
TargetObject: '*\cmmgr32.exe*'
# Registry Object Value Set
selection3:
EventID: 13
TargetObject: '*\cmmgr32.exe*'
# Process Access Call Trace
selection4:
EventID: 10
CallTrace: '*cmlua.dll*'
---
logsource:
category: process_creation
product: windows
detection:
# CMSTP Spawning Child Process
selection1:
ParentImage: '*\cmstp.exe'