Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_service_execution.yml
T

26 lines
855 B
YAML
Raw Normal View History

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