Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_wmic_service.yml
T
Nasreddine Bencherchali e3bfb18f64 New Rules
2022-06-21 11:47:18 +01:00

30 lines
796 B
YAML

title: WMIC Service Start/Stop
id: 0b7163dc-7eee-4960-af17-c0cd517f92da
status: experimental
description: Detects usage of wmic to start or stop a service
author: Nasreddine Bencherchali
references:
- https://sushant747.gitbooks.io/total-oscp-guide/content/privilege_escalation_windows.html
date: 2022/06/20
logsource:
category: process_creation
product: windows
detection:
selection_img:
- OriginalFileName: 'wmic.exe'
- Image|endswith: '\WMIC.exe'
selection_cli:
CommandLine|contains|all:
- ' service '
- ' call '
CommandLine|contains:
- 'stopservice'
- 'startservice'
condition: all of selection*
falsepositives:
- Unknown
level: medium
tags:
- attack.execution
- attack.t1047