SigmaHQ/rules/windows/process_creation/win_new_service_creation.yml

30 lines
899 B
YAML
Raw Normal View History

title: New Service Creation
id: 7fe71fc9-de3b-432a-8d57-8c809efc10ab
2019-12-02 00:19:54 +00:00
status: experimental
2020-08-16 08:44:40 +00:00
description: Detects creation of a new service
2019-12-02 00:19:54 +00:00
author: Timur Zinniatullin, Daniil Yugoslavskiy, oscd.community
date: 2019/10/21
modified: 2019/11/04
tags:
- attack.persistence
- attack.privilege_escalation
2020-09-02 00:34:34 +00:00
- attack.t1050 # an old one
2020-06-16 20:46:08 +00:00
- attack.t1543.003
2019-12-02 00:19:54 +00:00
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1050/T1050.yaml
logsource:
category: process_creation
product: windows
detection:
selection:
2020-06-16 20:46:08 +00:00
- Image|endswith: '\sc.exe'
2020-06-16 21:01:13 +00:00
CommandLine|contains|all:
2019-12-02 00:19:54 +00:00
- 'create'
- 'binpath'
2020-06-16 20:46:08 +00:00
- Image|endswith: '\powershell.exe'
2020-06-16 21:01:13 +00:00
CommandLine|contains: 'new-service'
2019-12-02 00:19:54 +00:00
condition: selection
falsepositives:
- Legitimate administrator or user creates a service for legitimate reason
level: low