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
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/T1035/T1035.yaml
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 :
- Legitimate administrator or user executes a service for legitimate reason
level : low
tags :
- attack.execution
- attack.t1035
2020-06-16 20:46:08 +00:00
- attack.t1569.002