Files
splunk-security_content/detections/creation_of_shadow_copy.yml
2020-05-06 17:42:38 +02:00

39 lines
1.7 KiB
YAML

name: Creation of Shadow Copy
id: eb120f5f-b879-4a63-97c1-93352b5df844
version: 1
date: '2019-12-10'
description: Monitor for signs that Ntdsutil, Vssadmin, or Wmic has been used to create
a shadow copy.
how_to_implement: You must be ingesting endpoint data that tracks process activity,
including parent-child relationships from your endpoints, to populate the Endpoint
data model in the Processes node. The command-line arguments are mapped to the "process"
field in the Endpoint data model.
type: ESCU
references:
- https://2017.zeronights.org/wp-content/uploads/materials/ZN17_Kheirkhabarov_Hunting_for_Credentials_Dumping_in_Windows_Environment.pdf
author: Patrick Bareiss, Splunk
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
as lastTime from datamodel=Endpoint.Processes where (Processes.process_name=ntdsutil.exe
Processes.process=*ntds* Processes.process=*create*) OR (Processes.process_name=vssadmin.exe
Processes.process=*create* Processes.process=*shadow*) OR (Processes.process_name=wmic.exe
Processes.process=*shadowcopy* Processes.process=*create*) by Processes.dest Processes.user
Processes.process_name Processes.process Processes.parent_process Processes.process_id
Processes.parent_process_id | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)`|
`security_content_ctime(lastTime)` | `creation_of_shadow_copy_filter`'
known_false_positives: Legtimate administrator usage of Ntdsutil, Vssadmin, or Wmic
will create false positives.
tags:
analytics_story:
- Credential Dumping
mitre_attack_id:
- T1003
kill_chain_phases:
- Actions on Objectives
cis20:
- CIS 8
- CIS 16
nist:
- DE.CM
security_domain: endpoint
asset_type: Endpoint