7c90f1d4c4
* Initial commit
* Update Investigation guides - security-docs review
* Update command_and_control_dns_tunneling_nslookup.toml
* Update defense_evasion_amsienable_key_mod.toml
* Apply security-docs review
* Remove dot
* Update rules/windows/command_and_control_rdp_tunnel_plink.toml
Co-authored-by: nastasha-solomon <79124755+nastasha-solomon@users.noreply.github.com>
* Apply changes from review
* Apply the suggestion
Co-authored-by: nastasha-solomon <79124755+nastasha-solomon@users.noreply.github.com>
(cherry picked from commit 817b97f428)
122 lines
5.8 KiB
TOML
122 lines
5.8 KiB
TOML
[metadata]
|
|
creation_date = "2021/07/19"
|
|
maturity = "production"
|
|
updated_date = "2022/05/09"
|
|
|
|
[rule]
|
|
author = ["Elastic", "Austin Songer"]
|
|
description = """
|
|
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.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Volume Shadow Copy Deletion via PowerShell"
|
|
note = """## 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 tasks 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.
|
|
|
|
### Related rules
|
|
|
|
- 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).
|
|
|
|
|
|
## Config
|
|
|
|
If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2, events will not define `event.ingested` and default fallback for EQL rules was not added until 8.2, so you will need to add a custom pipeline to populate `event.ingested` to @timestamp for this rule to work.
|
|
"""
|
|
references = [
|
|
"https://docs.microsoft.com/en-us/previous-versions/windows/desktop/vsswmi/win32-shadowcopy",
|
|
"https://powershell.one/wmi/root/cimv2/win32_shadowcopy",
|
|
"https://www.fortinet.com/blog/threat-research/stomping-shadow-copies-a-second-look-into-deletion-methods",
|
|
]
|
|
risk_score = 73
|
|
rule_id = "d99a037b-c8e2-47a5-97b9-170d076827c4"
|
|
severity = "high"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Impact"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where event.type in ("start", "process_started") and
|
|
process.name : ("powershell.exe", "pwsh.exe", "powershell_ise.exe") and
|
|
process.args : ("*Get-WmiObject*", "*gwmi*", "*Get-CimInstance*", "*gcim*") and
|
|
process.args : ("*Win32_ShadowCopy*") and
|
|
process.args : ("*.Delete()*", "*Remove-WmiObject*", "*rwmi*", "*Remove-CimInstance*", "*rcim*")
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1490"
|
|
name = "Inhibit System Recovery"
|
|
reference = "https://attack.mitre.org/techniques/T1490/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0040"
|
|
name = "Impact"
|
|
reference = "https://attack.mitre.org/tactics/TA0040/"
|
|
|