Volume Shadow Copy Deletion via WMIC

Identifies use of wmic.exe for shadow copy deletion on endpoints. This commonly occurs in tandem with ransomware or other destructive attacks.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/02/18"
  3integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
  4maturity = "production"
  5updated_date = "2024/11/02"
  6min_stack_version = "8.14.0"
  7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
  8
  9[rule]
 10author = ["Elastic"]
 11description = """
 12Identifies use of wmic.exe for shadow copy deletion on endpoints. This commonly occurs in tandem with ransomware or
 13other destructive attacks.
 14"""
 15from = "now-9m"
 16index = [
 17    "winlogbeat-*",
 18    "logs-endpoint.events.process-*",
 19    "logs-windows.forwarded*",
 20    "logs-windows.sysmon_operational-*",
 21    "endgame-*",
 22    "logs-system.security*",
 23    "logs-m365_defender.event-*",
 24    "logs-sentinel_one_cloud_funnel.*",
 25    "logs-crowdstrike.fdr*",
 26]
 27language = "eql"
 28license = "Elastic License v2"
 29name = "Volume Shadow Copy Deletion via WMIC"
 30note = """## Triage and analysis
 31
 32### Investigating Volume Shadow Copy Deletion via WMIC
 33
 34The 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.
 35
 36A 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.
 37
 38This rule monitors the execution of `wmic.exe` to interact with VSS via the `shadowcopy` alias and delete parameter.
 39
 40#### Possible investigation steps
 41
 42- Investigate the program execution chain (parent process tree).
 43- Check whether the account is authorized to perform this operation.
 44- Contact the account owner and confirm whether they are aware of this activity.
 45- In the case of a resize operation, check if the resize value is equal to suspicious values, like 401MB.
 46- Investigate other alerts associated with the user/host during the past 48 hours.
 47- If unsigned files are found on the process tree, retrieve them and determine if they are malicious:
 48  - Use a private sandboxed malware analysis system to perform analysis.
 49    - Observe and collect information about the following activities:
 50      - Attempts to contact external domains and addresses.
 51      - File and registry access, modification, and creation activities.
 52      - Service creation and launch activities.
 53      - Scheduled task creation.
 54  - Use the PowerShell Get-FileHash cmdlet to get the files' SHA-256 hash values.
 55    - Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
 56- Use process name, command line, and file hash to search for occurrences in other hosts.
 57- Check if any files on the host machine have been encrypted.
 58
 59
 60### False positive analysis
 61
 62- 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.
 63
 64### Related rules
 65
 66- Volume Shadow Copy Deleted or Resized via VssAdmin - b5ea4bfe-a1b2-421f-9d47-22a75a6f2921
 67- Volume Shadow Copy Deletion via PowerShell - d99a037b-c8e2-47a5-97b9-170d076827c4
 68
 69### Response and remediation
 70
 71- Initiate the incident response process based on the outcome of the triage.
 72- Priority should be given due to the advanced stage of this activity on the attack.
 73- Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
 74- If the triage identified malware, search the environment for additional compromised hosts.
 75  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 76  - Stop suspicious processes.
 77  - Immediately block the identified indicators of compromise (IoCs).
 78  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 79- Remove and block malicious artifacts identified during triage.
 80- If data was encrypted, deleted, or modified, activate your data recovery plan.
 81- 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.
 82- Perform data recovery locally or restore the backups from replicated copies (cloud, other servers, etc.).
 83- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 84- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 85- 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).
 86"""
 87risk_score = 73
 88rule_id = "dc9c1f74-dac3-48e3-b47f-eb79db358f57"
 89severity = "high"
 90tags = [
 91    "Domain: Endpoint",
 92    "OS: Windows",
 93    "Use Case: Threat Detection",
 94    "Tactic: Impact",
 95    "Tactic: Execution",
 96    "Resources: Investigation Guide",
 97    "Data Source: Elastic Endgame",
 98    "Data Source: Elastic Defend",
 99    "Data Source: System",
100    "Data Source: Microsoft Defender for Endpoint",
101    "Data Source: Sysmon",
102    "Data Source: SentinelOne",
103    "Data Source: Crowdstrike",
104]
105timestamp_override = "event.ingested"
106type = "eql"
107
108query = '''
109process where host.os.type == "windows" and event.type == "start" and
110  (process.name : "WMIC.exe" or ?process.pe.original_file_name == "wmic.exe") and
111  process.args : "delete" and process.args : "shadowcopy"
112'''
113
114
115[[rule.threat]]
116framework = "MITRE ATT&CK"
117[[rule.threat.technique]]
118id = "T1490"
119name = "Inhibit System Recovery"
120reference = "https://attack.mitre.org/techniques/T1490/"
121
122
123[rule.threat.tactic]
124id = "TA0040"
125name = "Impact"
126reference = "https://attack.mitre.org/tactics/TA0040/"
127[[rule.threat]]
128framework = "MITRE ATT&CK"
129[[rule.threat.technique]]
130id = "T1047"
131name = "Windows Management Instrumentation"
132reference = "https://attack.mitre.org/techniques/T1047/"
133
134
135[rule.threat.tactic]
136id = "TA0002"
137name = "Execution"
138reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Volume Shadow Copy Deletion via WMIC

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 wmic.exe to interact with VSS via the shadowcopy alias and delete parameter.

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.
  • In the case of a resize operation, check if the resize value is equal to suspicious values, like 401MB.
  • 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.
  • Priority should be given due to the advanced stage of this activity on the attack.
  • Consider isolating the involved host to prevent destructive behavior, which is commonly associated with this activity.
  • 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).

Related rules

to-top