mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
name: Deleting Shadow Copies
|
|
id: b89919ed-ee5f-492c-b139-95dbb162039e
|
|
version: 4
|
|
date: '2020-11-09'
|
|
author: David Dorsey, Splunk
|
|
status: production
|
|
type: TTP
|
|
description: The vssadmin.exe utility is used to interact with the Volume Shadow Copy
|
|
Service. Wmic is an interface to the Windows Management Instrumentation. This
|
|
search looks for either of these tools being used to delete shadow copies.
|
|
data_source:
|
|
- Sysmon Event ID 1
|
|
search:
|
|
selection1:
|
|
CommandLine: '*delete*'
|
|
Image|endswith:
|
|
- wmic.exe
|
|
- vssadmin.exe
|
|
selection2:
|
|
CommandLine: '*shadow*'
|
|
condition: selection1 and selection2
|
|
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.
|
|
known_false_positives: vssadmin.exe and wmic.exe are standard applications shipped
|
|
with modern versions of windows. They may be used by administrators to legitimately
|
|
delete old backup copies, although this is typically rare.
|
|
references: []
|
|
tags:
|
|
analytic_story:
|
|
- Windows Log Manipulation
|
|
- SamSam Ransomware
|
|
- Ransomware
|
|
- Clop Ransomware
|
|
- CISA AA22-264A
|
|
- Prestige Ransomware
|
|
asset_type: Endpoint
|
|
confidence: 90
|
|
impact: 90
|
|
message: An instance of $parent_process_name$ spawning $process_name$ was identified
|
|
on endpoint $dest$ by user $user$ attempting to delete shadow copies.
|
|
mitre_attack_id:
|
|
- T1490
|
|
observable:
|
|
- name: user
|
|
type: User
|
|
role:
|
|
- Victim
|
|
- name: dest
|
|
type: Hostname
|
|
role:
|
|
- Victim
|
|
- name: parent_process_name
|
|
type: Process
|
|
role:
|
|
- Parent Process
|
|
- name: process_name
|
|
type: Process
|
|
role:
|
|
- Child Process
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
risk_score: 81
|
|
security_domain: endpoint
|
|
tests:
|
|
- name: True Positive Test
|
|
attack_data:
|
|
- data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1490/atomic_red_team/windows-sysmon.log
|
|
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
|
|
sourcetype: xmlwineventlog
|