SigmaHQ/rules/windows/process_creation/win_service_execution.yml

27 lines
927 B
YAML
Raw Normal View History

title: Service Execution
2019-11-12 22:12:27 +00:00
id: 2a072a96-a086-49fa-bcb5-15cc5a619093
status: experimental
description: Detects manual service execution (start) via system utilities.
author: Timur Zinniatullin, Daniil Yugoslavskiy, oscd.community
date: 2019/10/21
modified: 2019/11/04
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1569.002/T1569.002.md
logsource:
category: process_creation
product: windows
detection:
selection:
2020-06-16 20:46:08 +00:00
Image|endswith:
- '\net.exe'
- '\net1.exe'
2019-12-03 10:24:00 +00:00
CommandLine|contains: ' start ' # space character after the 'start' keyword indicates that a service name follows, in contrast to `net start` discovery expression
condition: selection
falsepositives:
- Legitimate administrator or user executes a service for legitimate reasons.
level: low
tags:
- attack.execution
- attack.t1035 # an old one
2020-06-16 20:46:08 +00:00
- attack.t1569.002