2021-01-20 17:51:49 +00:00
|
|
|
title: UNC2452 PowerShell Pattern
|
|
|
|
id: b7155193-8a81-4d8f-805d-88de864ca50c
|
2021-01-21 08:19:51 +00:00
|
|
|
description: Detects a specific PowerShell command line pattern used by the UNC2452 actors as mentioned in Microsoft and Symantec reports
|
2021-01-20 17:51:49 +00:00
|
|
|
references:
|
|
|
|
- https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/solarwinds-raindrop-malware
|
|
|
|
- https://www.microsoft.com/security/blog/2020/12/18/analyzing-solorigate-the-compromised-dll-file-that-started-a-sophisticated-cyberattack-and-how-microsoft-defender-helps-protect/
|
|
|
|
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1047/T1047.md#atomic-test-7---create-a-process-using-wmi-query-and-an-encoded-command
|
|
|
|
tags:
|
|
|
|
- attack.execution
|
|
|
|
- attack.t1059.001
|
|
|
|
- attack.t1047
|
2021-08-25 07:15:57 +00:00
|
|
|
# - sunburst
|
2021-01-20 17:51:49 +00:00
|
|
|
author: Florian Roth
|
|
|
|
date: 2021/01/20
|
2021-01-22 08:18:11 +00:00
|
|
|
modified: 2021/01/22
|
2021-01-20 17:51:49 +00:00
|
|
|
logsource:
|
|
|
|
category: process_creation
|
|
|
|
product: windows
|
|
|
|
detection:
|
2021-01-22 08:18:11 +00:00
|
|
|
selection1:
|
2021-01-20 17:51:49 +00:00
|
|
|
CommandLine|contains|all:
|
2021-01-20 17:52:50 +00:00
|
|
|
- 'Invoke-WMIMethod win32_process -name create -argumentlist'
|
2021-01-20 17:51:49 +00:00
|
|
|
- 'rundll32 c:\windows'
|
2021-01-22 08:18:11 +00:00
|
|
|
selection2:
|
|
|
|
CommandLine|contains|all:
|
|
|
|
- 'wmic /node:'
|
|
|
|
- 'process call create "rundll32 c:\windows'
|
|
|
|
condition: selection1 or selection2
|
2021-01-20 17:51:49 +00:00
|
|
|
falsepositives:
|
|
|
|
- Unknown, unlikely, but possible
|
2021-01-20 17:52:50 +00:00
|
|
|
level: critical
|