mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 17:58:52 +00:00
b091e3b1c4
Update for method mentioned in https://ired.team/offensive-security/code-execution/code-execution-through-control-panel-add-ins
35 lines
970 B
YAML
35 lines
970 B
YAML
title: Control Panel Items
|
|
id: 0ba863e6-def5-4e50-9cea-4dd8c7dc46a4
|
|
status: experimental
|
|
description: Detects the malicious use of a control panel item
|
|
reference:
|
|
- https://attack.mitre.org/techniques/T1196/
|
|
- https://ired.team/offensive-security/code-execution/code-execution-through-control-panel-add-ins
|
|
tags:
|
|
- attack.execution
|
|
- attack.t1196
|
|
- attack.defense_evasion
|
|
- attack.t1218
|
|
author: Kyaw Min Thein, Furkan Caliskan (@caliskanfurkan_)
|
|
date: 2020/06/22
|
|
level: critical
|
|
logsource:
|
|
product: windows
|
|
category: process_creation
|
|
detection:
|
|
selection1:
|
|
CommandLine: '*.cpl'
|
|
filter:
|
|
CommandLine:
|
|
- '*\System32\\*'
|
|
- '*%System%*'
|
|
selection2:
|
|
CommandLine:
|
|
- '*reg add*'
|
|
selection3:
|
|
CommandLine:
|
|
- '*CurrentVersion\\Control Panel\\CPLs*'
|
|
condition: (selection1 and not filter) or (selection2 and selection3)
|
|
falsepositives:
|
|
- Unknown
|