2019-03-09 17:57:59 +00:00
|
|
|
action: global
|
2018-07-15 23:53:41 +00:00
|
|
|
title: CMSTP Execution
|
2019-11-12 22:12:27 +00:00
|
|
|
id: 9d26fede-b526-4413-b069-6e24b6d07167
|
2018-07-16 21:55:31 +00:00
|
|
|
status: stable
|
2018-07-15 23:53:41 +00:00
|
|
|
description: Detects various indicators of Microsoft Connection Manager Profile Installer execution
|
2018-07-19 21:36:13 +00:00
|
|
|
tags:
|
|
|
|
- attack.defense_evasion
|
|
|
|
- attack.execution
|
2020-08-29 00:03:28 +00:00
|
|
|
- attack.t1191 # an old one
|
|
|
|
- attack.t1218.003
|
2018-07-19 21:36:13 +00:00
|
|
|
- attack.g0069
|
2019-06-14 04:15:38 +00:00
|
|
|
- car.2019-04-001
|
2018-07-15 23:53:41 +00:00
|
|
|
author: Nik Seetharaman
|
2020-01-30 15:07:37 +00:00
|
|
|
date: 2018/07/16
|
2020-08-29 00:03:28 +00:00
|
|
|
modified: 2020/08/28
|
2018-07-15 23:53:41 +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/
|
2019-03-09 17:57:59 +00:00
|
|
|
detection:
|
|
|
|
condition: 1 of them
|
|
|
|
fields:
|
|
|
|
- CommandLine
|
|
|
|
- ParentCommandLine
|
|
|
|
- Details
|
|
|
|
falsepositives:
|
|
|
|
- Legitimate CMSTP use (unlikely in modern enterprise environments)
|
|
|
|
level: high
|
|
|
|
---
|
2018-07-15 23:53:41 +00:00
|
|
|
logsource:
|
|
|
|
product: windows
|
|
|
|
service: sysmon
|
|
|
|
detection:
|
|
|
|
# Registry Object Add
|
|
|
|
selection2:
|
|
|
|
EventID: 12
|
|
|
|
TargetObject: '*\cmmgr32.exe*'
|
2020-05-22 14:37:00 +00:00
|
|
|
EventType: 'CreateKey'
|
2018-07-15 23:53:41 +00:00
|
|
|
# Registry Object Value Set
|
|
|
|
selection3:
|
|
|
|
EventID: 13
|
|
|
|
TargetObject: '*\cmmgr32.exe*'
|
|
|
|
# Process Access Call Trace
|
|
|
|
selection4:
|
|
|
|
EventID: 10
|
|
|
|
CallTrace: '*cmlua.dll*'
|
2019-03-09 17:57:59 +00:00
|
|
|
---
|
|
|
|
logsource:
|
|
|
|
category: process_creation
|
|
|
|
product: windows
|
|
|
|
detection:
|
|
|
|
# CMSTP Spawning Child Process
|
|
|
|
selection1:
|
2020-01-30 15:07:37 +00:00
|
|
|
ParentImage: '*\cmstp.exe'
|