2019-11-12 22:05:36 +00:00
title : Service Execution
2019-11-12 22:12:27 +00:00
id : 2a072a96-a086-49fa-bcb5-15cc5a619093
2019-11-12 22:05:36 +00:00
status : experimental
2021-07-06 09:21:22 +00:00
description : Detects manual service execution (start) via system utilities.
2019-11-12 22:05:36 +00:00
author : Timur Zinniatullin, Daniil Yugoslavskiy, oscd.community
date : 2019 /10/21
2020-09-06 21:28:08 +00:00
modified : 2019 /11/04
2019-11-12 22:05:36 +00:00
references :
2021-07-06 09:21:22 +00:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1569.002/T1569.002.md
2019-11-12 22:05:36 +00:00
logsource :
category : process_creation
product : windows
detection :
selection :
2020-06-16 20:46:08 +00:00
Image|endswith :
2019-11-12 22:05:36 +00:00
- '\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
2019-11-12 22:05:36 +00:00
condition : selection
falsepositives :
2021-07-06 09:21:22 +00:00
- Legitimate administrator or user executes a service for legitimate reasons.
2019-11-12 22:05:36 +00:00
level : low
tags :
- attack.execution
2020-09-06 22:00:41 +00:00
- attack.t1035 # an old one
2020-06-16 20:46:08 +00:00
- attack.t1569.002