mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
59 lines
2.2 KiB
YAML
59 lines
2.2 KiB
YAML
name: Windows Service Creation Using Registry Entry
|
|
id: 25212358-948e-11ec-ad47-acde48001122
|
|
version: 1
|
|
date: '2022-02-23'
|
|
author: Teoderick Contreras, Splunk
|
|
status: production
|
|
type: TTP
|
|
description: This analytic is to look for suspicious modification or creation of registry
|
|
to have service entry. This technique is abused by adversaries or threat actor to
|
|
persist, gain privileges in the machine or even lateral movement. This technique
|
|
can be executed using reg.exe application or using windows API like for example
|
|
the CrashOveride malware. This detection is a good indicator that a process is trying
|
|
to create a service entry using registry ImagePath.
|
|
data_source:
|
|
- Sysmon Event ID 13
|
|
search:
|
|
selection1:
|
|
Registry.registry_value_name: ImagePath
|
|
TargetObject: '*\\SYSTEM\\CurrentControlSet\\Services*'
|
|
condition: selection1
|
|
how_to_implement: To successfully implement this search you need to be ingesting information
|
|
on process that include the name of the process responsible for the changes from
|
|
your endpoints into the `Endpoint` datamodel in the `Registry` node. Also make sure
|
|
that this registry was included in your config files ex. sysmon config to be monitored.
|
|
known_false_positives: Third party tools may used this technique to create services
|
|
but not so common.
|
|
references:
|
|
- https://github.com/redcanaryco/atomic-red-team/blob/36d49de4c8b00bf36054294b4a1fcbab3917d7c5/atomics/T1574.011/T1574.011.md
|
|
tags:
|
|
analytic_story:
|
|
- Active Directory Lateral Movement
|
|
- Suspicious Windows Registry Activities
|
|
- Windows Persistence Techniques
|
|
- Windows Registry Abuse
|
|
- Brute Ratel C4
|
|
asset_type: Endpoint
|
|
confidence: 80
|
|
impact: 80
|
|
message: A Windows Service was created on a endpoint from $dest$
|
|
mitre_attack_id:
|
|
- T1574.011
|
|
observable:
|
|
- name: dest
|
|
type: Endpoint
|
|
role:
|
|
- Victim
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
risk_score: 64
|
|
security_domain: endpoint
|
|
tests:
|
|
- name: True Positive Test
|
|
attack_data:
|
|
- data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1574.011/change_registry_path_service/windows-sysmon.log
|
|
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
|
|
sourcetype: xmlwineventlog
|