mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
24 lines
1000 B
YAML
24 lines
1000 B
YAML
name: Previously Seen Running Windows Services - Initial
|
|
id: 64ce0ade-cb01-4678-bddd-d31c0b175394
|
|
version: 3
|
|
date: '2020-06-23'
|
|
description: This collects the services that have been started across your entire
|
|
enterprise.
|
|
how_to_implement: While this search does not require you to adhere to Splunk CIM,
|
|
you must be ingesting your Windows security-event logs for it to execute successfully.
|
|
Please ensure that the Splunk Add-on for Microsoft Windows is version 8.0.0 or above.
|
|
author: David Dorsey, Splunk
|
|
search: '`wineventlog_system` EventCode=7036 |
|
|
rex field=Message "The (?<service>[-\(\)\s\w]+) service entered the (?<state>\w+) state" |
|
|
where state="running" |
|
|
stats earliest(_time) as firstTimeSeen, latest(_time) as lastTimeSeen by service |
|
|
outputlookup previously_seen_running_windows_services'
|
|
tags:
|
|
analytics_story:
|
|
- Orangeworm Attack Group
|
|
- Windows Service Abuse
|
|
detections:
|
|
- First Time Seen Running Windows Service
|
|
deployments:
|
|
- 90 Day Baseline
|