Files
blue-team-tools/rules/windows/process_access/proc_access_win_invoke_phantom.yml
T

33 lines
1.1 KiB
YAML
Raw Normal View History

2023-01-30 20:02:45 +01:00
title: Potential Svchost Memory Access
2020-06-10 16:32:30 +02:00
id: 166e9c50-8cd9-44af-815d-d1f0c0e90dde
status: experimental
2023-01-30 20:02:45 +01:00
description: Detects potential access to svchost process memory such as that used by Invoke-Phantom to kill the winRM windows event logging service.
2020-06-10 16:32:30 +02:00
references:
- https://github.com/hlldz/Invoke-Phant0m
- https://twitter.com/timbmsft/status/900724491076214784
2022-10-26 09:42:26 +02:00
author: Tim Burrell
date: 2020/01/02
2023-01-30 20:02:45 +01:00
modified: 2023/01/30
2020-06-10 16:32:30 +02:00
tags:
- attack.defense_evasion
2020-09-13 15:46:45 +02:00
- attack.t1562.002
2020-06-10 16:32:30 +02:00
logsource:
category: process_access
product: windows
detection:
selection:
2021-10-21 09:47:06 +02:00
TargetImage|endswith: '\WINDOWS\System32\svchost.exe'
GrantedAccess: '0x1F3FFF'
CallTrace|contains: 'UNKNOWN'
2022-11-01 01:05:42 +01:00
filter_msbuild:
SourceImage|startswith: 'C:\Program Files\Microsoft Visual Studio\'
SourceImage|endswith: '\MSBuild\Current\Bin\MSBuild.exe'
# Just to make sure it's "really" .NET :)
CallTrace|contains:
- 'Microsoft.Build.ni.dll'
- 'System.ni.dll'
condition: selection and not 1 of filter_*
2020-06-10 16:32:30 +02:00
falsepositives:
2022-03-16 13:43:54 +01:00
- Unknown
2020-06-10 16:32:30 +02:00
level: high