Volume Shadow Copy Deletion via PowerShell

Identifies the use of the Win32_ShadowCopy class and related cmdlets to achieve shadow copy deletion. This commonly occurs in tandem with ransomware or other destructive attacks.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2021/07/19"
  3integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
  4maturity = "production"
  5updated_date = "2025/03/20"
  6
  7[rule]
  8author = ["Elastic", "Austin Songer"]
  9description = """
 10Identifies the use of the Win32_ShadowCopy class and related cmdlets to achieve shadow copy deletion. This commonly
 11occurs in tandem with ransomware or other destructive attacks.
 12"""
 13from = "now-9m"
 14index = [
 15    "endgame-*",
 16    "logs-crowdstrike.fdr*",
 17    "logs-endpoint.events.process-*",
 18    "logs-m365_defender.event-*",
 19    "logs-sentinel_one_cloud_funnel.*",
 20    "logs-system.security*",
 21    "logs-windows.forwarded*",
 22    "logs-windows.sysmon_operational-*",
 23    "winlogbeat-*",
 24]
 25language = "eql"
 26license = "Elastic License v2"
 27name = "Volume Shadow Copy Deletion via PowerShell"
 28note = """## Triage and analysis
 29
 30### Investigating Volume Shadow Copy Deletion via PowerShell
 31
 32The Volume Shadow Copy Service (VSS) is a Windows feature that enables system administrators to take snapshots of volumes that can later be restored or mounted to recover specific files or folders.
 33
 34A typical step in the playbook of an attacker attempting to deploy ransomware is to delete Volume Shadow Copies to ensure that victims have no alternative to paying the ransom, making any action that deletes shadow copies worth monitoring.
 35
 36This rule monitors the execution of PowerShell cmdlets to interact with the Win32_ShadowCopy WMI class, retrieve shadow copy objects, and delete them.
 37
 38#### Possible investigation steps
 39
 40- Investigate the program execution chain (parent process tree).
 41- Check whether the account is authorized to perform this operation.
 42- Contact the account owner and confirm whether they are aware of this activity.
 43- Investigate other alerts associated with the user/host during the past 48 hours.
 44- If unsigned files are found on the process tree, retrieve them and determine if they are malicious:
 45  - Use a private sandboxed malware analysis system to perform analysis.
 46    - Observe and collect information about the following activities:
 47      - Attempts to contact external domains and addresses.
 48      - File and registry access, modification, and creation activities.
 49      - Service creation and launch activities.
 50      - Scheduled task creation.
 51  - Use the PowerShell Get-FileHash cmdlet to get the files' SHA-256 hash values.
 52    - Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
 53- Use process name, command line, and file hash to search for occurrences in other hosts.
 54- Check if any files on the host machine have been encrypted.
 55
 56
 57### False positive analysis
 58
 59- This rule has chances of producing benign true positives (B-TPs). If this activity is expected and noisy in your environment, consider adding exceptions — preferably with a combination of user and command line conditions.
 60
 61### Related rules
 62
 63- Volume Shadow Copy Deleted or Resized via VssAdmin - b5ea4bfe-a1b2-421f-9d47-22a75a6f2921
 64- Volume Shadow Copy Deletion via PowerShell - d99a037b-c8e2-47a5-97b9-170d076827c4
 65
 66### Response and remediation
 67
 68- Initiate the incident response process based on the outcome of the triage.
 69- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
 70- Priority should be given due to the advanced stage of this activity on the attack.
 71- If the triage identified malware, search the environment for additional compromised hosts.
 72  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 73  - Stop suspicious processes.
 74  - Immediately block the identified indicators of compromise (IoCs).
 75  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 76- Remove and block malicious artifacts identified during triage.
 77- If data was encrypted, deleted, or modified, activate your data recovery plan.
 78- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
 79- Perform data recovery locally or restore the backups from replicated copies (cloud, other servers, etc.).
 80- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 81- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 82- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 83"""
 84references = [
 85    "https://docs.microsoft.com/en-us/previous-versions/windows/desktop/vsswmi/win32-shadowcopy",
 86    "https://powershell.one/wmi/root/cimv2/win32_shadowcopy",
 87    "https://www.fortinet.com/blog/threat-research/stomping-shadow-copies-a-second-look-into-deletion-methods",
 88]
 89risk_score = 73
 90rule_id = "d99a037b-c8e2-47a5-97b9-170d076827c4"
 91severity = "high"
 92tags = [
 93    "Domain: Endpoint",
 94    "OS: Windows",
 95    "Use Case: Threat Detection",
 96    "Tactic: Impact",
 97    "Tactic: Execution",
 98    "Resources: Investigation Guide",
 99    "Data Source: Elastic Endgame",
100    "Data Source: Elastic Defend",
101    "Data Source: Windows Security Event Logs",
102    "Data Source: Microsoft Defender for Endpoint",
103    "Data Source: Sysmon",
104    "Data Source: SentinelOne",
105    "Data Source: Crowdstrike",
106]
107timestamp_override = "event.ingested"
108type = "eql"
109
110query = '''
111process where host.os.type == "windows" and event.type == "start" and
112  process.name : ("powershell.exe", "pwsh.exe", "powershell_ise.exe") and
113  process.args : ("*Get-WmiObject*", "*gwmi*", "*Get-CimInstance*", "*gcim*") and
114  process.args : ("*Win32_ShadowCopy*") and
115  process.args : ("*.Delete()*", "*Remove-WmiObject*", "*rwmi*", "*Remove-CimInstance*", "*rcim*")
116'''
117
118
119[[rule.threat]]
120framework = "MITRE ATT&CK"
121[[rule.threat.technique]]
122id = "T1490"
123name = "Inhibit System Recovery"
124reference = "https://attack.mitre.org/techniques/T1490/"
125
126
127[rule.threat.tactic]
128id = "TA0040"
129name = "Impact"
130reference = "https://attack.mitre.org/tactics/TA0040/"
131[[rule.threat]]
132framework = "MITRE ATT&CK"
133[[rule.threat.technique]]
134id = "T1059"
135name = "Command and Scripting Interpreter"
136reference = "https://attack.mitre.org/techniques/T1059/"
137[[rule.threat.technique.subtechnique]]
138id = "T1059.001"
139name = "PowerShell"
140reference = "https://attack.mitre.org/techniques/T1059/001/"
141
142
143
144[rule.threat.tactic]
145id = "TA0002"
146name = "Execution"
147reference = "https://attack.mitre.org/tactics/TA0002/"
...
toml

The Volume Shadow Copy Service (VSS) is a Windows feature that enables system administrators to take snapshots of volumes that can later be restored or mounted to recover specific files or folders.

A typical step in the playbook of an attacker attempting to deploy ransomware is to delete Volume Shadow Copies to ensure that victims have no alternative to paying the ransom, making any action that deletes shadow copies worth monitoring.

This rule monitors the execution of PowerShell cmdlets to interact with the Win32_ShadowCopy WMI class, retrieve shadow copy objects, and delete them.

  • Investigate the program execution chain (parent process tree).
  • Check whether the account is authorized to perform this operation.
  • Contact the account owner and confirm whether they are aware of this activity.
  • Investigate other alerts associated with the user/host during the past 48 hours.
  • If unsigned files are found on the process tree, retrieve them and determine if they are malicious:
    • Use a private sandboxed malware analysis system to perform analysis.
      • Observe and collect information about the following activities:
        • Attempts to contact external domains and addresses.
        • File and registry access, modification, and creation activities.
        • Service creation and launch activities.
        • Scheduled task creation.
    • Use the PowerShell Get-FileHash cmdlet to get the files' SHA-256 hash values.
      • Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
  • Use process name, command line, and file hash to search for occurrences in other hosts.
  • Check if any files on the host machine have been encrypted.
  • This rule has chances of producing benign true positives (B-TPs). If this activity is expected and noisy in your environment, consider adding exceptions — preferably with a combination of user and command line conditions.
  • Volume Shadow Copy Deleted or Resized via VssAdmin - b5ea4bfe-a1b2-421f-9d47-22a75a6f2921
  • Volume Shadow Copy Deletion via PowerShell - d99a037b-c8e2-47a5-97b9-170d076827c4
  • Initiate the incident response process based on the outcome of the triage.
  • Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
  • Priority should be given due to the advanced stage of this activity on the attack.
  • If the triage identified malware, search the environment for additional compromised hosts.
    • Implement temporary network rules, procedures, and segmentation to contain the malware.
    • Stop suspicious processes.
    • Immediately block the identified indicators of compromise (IoCs).
    • Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
  • Remove and block malicious artifacts identified during triage.
  • If data was encrypted, deleted, or modified, activate your data recovery plan.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Perform data recovery locally or restore the backups from replicated copies (cloud, other servers, etc.).
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top