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"]
  4maturity = "production"
  5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
  6min_stack_version = "8.3.0"
  7updated_date = "2024/03/28"
  8
  9[rule]
 10author = ["Elastic", "Austin Songer"]
 11description = """
 12Identifies the use of the Win32_ShadowCopy class and related cmdlets to achieve shadow copy deletion. This commonly
 13occurs in tandem with ransomware or other destructive attacks.
 14"""
 15from = "now-9m"
 16index = ["winlogbeat-*", "logs-endpoint.events.process-*", "logs-windows.*", "endgame-*", "logs-system.security*"]
 17language = "eql"
 18license = "Elastic License v2"
 19name = "Volume Shadow Copy Deletion via PowerShell"
 20note = """## Triage and analysis
 21
 22### Investigating Volume Shadow Copy Deletion via PowerShell
 23
 24The 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.
 25
 26A 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.
 27
 28This rule monitors the execution of PowerShell cmdlets to interact with the Win32_ShadowCopy WMI class, retrieve shadow copy objects, and delete them.
 29
 30#### Possible investigation steps
 31
 32- Investigate the program execution chain (parent process tree).
 33- Check whether the account is authorized to perform this operation.
 34- Contact the account owner and confirm whether they are aware of this activity.
 35- Investigate other alerts associated with the user/host during the past 48 hours.
 36- If unsigned files are found on the process tree, retrieve them and determine if they are malicious:
 37  - Use a private sandboxed malware analysis system to perform analysis.
 38    - Observe and collect information about the following activities:
 39      - Attempts to contact external domains and addresses.
 40      - File and registry access, modification, and creation activities.
 41      - Service creation and launch activities.
 42      - Scheduled task creation.
 43  - Use the PowerShell Get-FileHash cmdlet to get the files' SHA-256 hash values.
 44    - Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
 45- Use process name, command line, and file hash to search for occurrences in other hosts.
 46- Check if any files on the host machine have been encrypted.
 47
 48
 49### False positive analysis
 50
 51- 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.
 52
 53### Related rules
 54
 55- Volume Shadow Copy Deleted or Resized via VssAdmin - b5ea4bfe-a1b2-421f-9d47-22a75a6f2921
 56- Volume Shadow Copy Deletion via PowerShell - d99a037b-c8e2-47a5-97b9-170d076827c4
 57
 58### Response and remediation
 59
 60- Initiate the incident response process based on the outcome of the triage.
 61- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
 62- Priority should be given due to the advanced stage of this activity on the attack.
 63- If the triage identified malware, search the environment for additional compromised hosts.
 64  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 65  - Stop suspicious processes.
 66  - Immediately block the identified indicators of compromise (IoCs).
 67  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 68- Remove and block malicious artifacts identified during triage.
 69- If data was encrypted, deleted, or modified, activate your data recovery plan.
 70- 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.
 71- Perform data recovery locally or restore the backups from replicated copies (cloud, other servers, etc.).
 72- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 73- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 74- 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).
 75"""
 76references = [
 77    "https://docs.microsoft.com/en-us/previous-versions/windows/desktop/vsswmi/win32-shadowcopy",
 78    "https://powershell.one/wmi/root/cimv2/win32_shadowcopy",
 79    "https://www.fortinet.com/blog/threat-research/stomping-shadow-copies-a-second-look-into-deletion-methods",
 80]
 81risk_score = 73
 82rule_id = "d99a037b-c8e2-47a5-97b9-170d076827c4"
 83setup = """## Setup
 84
 85If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
 86events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
 87Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
 88`event.ingested` to @timestamp.
 89For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
 90"""
 91severity = "high"
 92tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Impact", "Tactic: Execution", "Resources: Investigation Guide", "Data Source: Elastic Endgame", "Data Source: Elastic Defend"]
 93timestamp_override = "event.ingested"
 94type = "eql"
 95
 96query = '''
 97process where host.os.type == "windows" and event.type == "start" and
 98  process.name : ("powershell.exe", "pwsh.exe", "powershell_ise.exe") and
 99  process.args : ("*Get-WmiObject*", "*gwmi*", "*Get-CimInstance*", "*gcim*") and
100  process.args : ("*Win32_ShadowCopy*") and
101  process.args : ("*.Delete()*", "*Remove-WmiObject*", "*rwmi*", "*Remove-CimInstance*", "*rcim*")
102'''
103
104
105[[rule.threat]]
106framework = "MITRE ATT&CK"
107[[rule.threat.technique]]
108id = "T1490"
109name = "Inhibit System Recovery"
110reference = "https://attack.mitre.org/techniques/T1490/"
111
112
113[rule.threat.tactic]
114id = "TA0040"
115name = "Impact"
116reference = "https://attack.mitre.org/tactics/TA0040/"
117
118[[rule.threat]]
119framework = "MITRE ATT&CK"
120[[rule.threat.technique]]
121id = "T1059"
122name = "Command and Scripting Interpreter"
123reference = "https://attack.mitre.org/techniques/T1059/"
124[[rule.threat.technique.subtechnique]]
125id = "T1059.001"
126name = "PowerShell"
127reference = "https://attack.mitre.org/techniques/T1059/001/"
128
129
130
131[rule.threat.tactic]
132id = "TA0002"
133name = "Execution"
134reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Volume Shadow Copy Deletion via PowerShell

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.

Possible investigation steps

  • 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.

False positive analysis

  • 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

Response and remediation

  • 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