Detects that a powershell code is written to the registry as a service.
title: PowerShell as a Service in Registry
id: 4a5f5a5e-ac01-474b-9b4e-d61298c9df1d
status: test
description: Detects that a powershell code is written to the registry as a service.
references:
- https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse
author: oscd.community, Natalia Shornikova
date: 2020-10-06
modified: 2023-08-17
tags:
- attack.execution
- attack.t1569.002
logsource:
category: registry_set
product: windows
detection:
selection:
TargetObject|contains: '\Services\'
TargetObject|endswith: '\ImagePath'
Details|contains:
- 'powershell'
- 'pwsh'
condition: selection
falsepositives:
- Unknown
level: high
imRegistry
| where RegistryKey endswith "\\Services*" and RegistryKey endswith "\\ImagePath" and (RegistryValueData contains "powershell" or RegistryValueData contains "pwsh")
DeviceRegistryEvents
| where RegistryKey endswith "\\Services*" and RegistryKey endswith "\\ImagePath" and (RegistryValueData contains "powershell" or RegistryValueData contains "pwsh")
| Sentinel Table | Notes |
|---|---|
imRegistry | Ensure this data connector is enabled |