2020-06-10 14:32:30 +00:00
|
|
|
action: global
|
|
|
|
title: CMSTP Execution
|
|
|
|
id: 9d26fede-b526-4413-b069-6e24b6d07167
|
|
|
|
status: stable
|
|
|
|
description: Detects various indicators of Microsoft Connection Manager Profile Installer execution
|
|
|
|
tags:
|
|
|
|
- attack.defense_evasion
|
2020-08-23 02:03:06 +00:00
|
|
|
- attack.t1218.003
|
|
|
|
- attack.t1191 # an old one
|
2020-06-10 14:32:30 +00:00
|
|
|
- attack.execution
|
2020-08-23 02:03:06 +00:00
|
|
|
- attack.t1559.001
|
2020-08-25 23:51:22 +00:00
|
|
|
- attack.t1175 # an old one
|
2020-06-10 14:32:30 +00:00
|
|
|
- attack.g0069
|
2020-08-23 02:03:06 +00:00
|
|
|
- attack.g0080
|
2020-06-10 14:32:30 +00:00
|
|
|
- car.2019-04-001
|
|
|
|
author: Nik Seetharaman
|
|
|
|
date: 2018/07/16
|
2020-08-24 23:31:26 +00:00
|
|
|
modified: 2020/08/24
|
2020-06-10 14:32:30 +00:00
|
|
|
references:
|
2020-07-03 09:22:06 +00:00
|
|
|
- https://web.archive.org/web/20190720093911/http://www.endurant.io/cmstp/detecting-cmstp-enabled-code-execution-and-uac-bypass-with-sysmon/
|
2020-06-10 14:32:30 +00:00
|
|
|
fields:
|
|
|
|
- CommandLine
|
|
|
|
- ParentCommandLine
|
|
|
|
- Details
|
|
|
|
falsepositives:
|
|
|
|
- Legitimate CMSTP use (unlikely in modern enterprise environments)
|
|
|
|
level: high
|
|
|
|
---
|
|
|
|
logsource:
|
|
|
|
product: windows
|
|
|
|
category: registry_event
|
|
|
|
detection:
|
|
|
|
# Registry Object Add
|
|
|
|
selection2:
|
2020-10-15 20:16:50 +00:00
|
|
|
TargetObject|contains: '\cmmgr32.exe'
|
2020-06-10 14:32:30 +00:00
|
|
|
EventType: 'CreateKey'
|
|
|
|
# Registry Object Value Set
|
|
|
|
selection3:
|
2020-10-15 20:16:50 +00:00
|
|
|
TargetObject|contains: '\cmmgr32.exe'
|
2020-06-10 14:32:30 +00:00
|
|
|
# Process Access Call Trace
|
|
|
|
selection4:
|
2020-10-15 20:16:50 +00:00
|
|
|
CallTrace|contains: 'cmlua.dll'
|
2020-06-24 16:10:58 +00:00
|
|
|
condition: 1 of them
|
2020-06-10 14:32:30 +00:00
|
|
|
---
|
|
|
|
logsource:
|
|
|
|
category: process_creation
|
|
|
|
product: windows
|
|
|
|
detection:
|
|
|
|
# CMSTP Spawning Child Process
|
|
|
|
selection1:
|
2020-10-15 20:16:50 +00:00
|
|
|
ParentImage|endswith: '\cmstp.exe'
|
2020-06-24 16:10:58 +00:00
|
|
|
condition: 1 of them
|