183b1ffdd3
* [Rule Tuning] Add endgame support for Windows Rules * Update collection_email_powershell_exchange_mailbox.toml * Supported Rules - First Half * bum updated_date * Add tag * Revert compat * missing tags
120 lines
5.4 KiB
TOML
120 lines
5.4 KiB
TOML
[metadata]
|
|
creation_date = "2020/02/18"
|
|
maturity = "production"
|
|
updated_date = "2022/09/27"
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
min_stack_version = "8.3.0"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = "Identifies a suspicious parent child process relationship with cmd.exe descending from svchost.exe"
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*", "endgame-*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Svchost spawning Cmd"
|
|
note = """## Triage and analysis
|
|
|
|
### Investigating Svchost spawning Cmd
|
|
|
|
The Service Host process (SvcHost) is a system process that can host one, or multiple, Windows services in the Windows
|
|
NT family of operating systems. Note that `Svchost.exe` is reserved for use by the operating system and should not be
|
|
used by non-Windows services.
|
|
|
|
This rule looks for the creation of the `cmd.exe` process with `svchost.exe` as its parent process. This is an unusual
|
|
behavior that can indicate the masquerading of a malicious process as `svchost.exe` or exploitation for privilege
|
|
escalation.
|
|
|
|
#### Possible investigation steps
|
|
|
|
- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files
|
|
for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
|
|
- Investigate other alerts associated with the user/host during the past 48 hours.
|
|
- Investigate any abnormal behavior by the subject process such as network connections, registry or file modifications,
|
|
and any spawned child processes.
|
|
- Retrieve the process executable and determine if it is 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.
|
|
|
|
### False positive analysis
|
|
|
|
- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
|
|
|
|
### Response and remediation
|
|
|
|
- Initiate the incident response process based on the outcome of the triage.
|
|
- Isolate the involved host to prevent further post-compromise behavior.
|
|
- 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.
|
|
- 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).
|
|
|
|
## Setup
|
|
|
|
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://nasbench.medium.com/demystifying-the-svchost-exe-process-and-its-command-line-options-508e9114e747"
|
|
]
|
|
risk_score = 21
|
|
rule_id = "fd7a6052-58fa-4397-93c3-4795249ccfa2"
|
|
severity = "low"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Execution", "has_guide", "Elastic Endgame"]
|
|
timeline_id = "e70679c2-6cde-4510-9764-4823df18f7db"
|
|
timeline_title = "Comprehensive Process Timeline"
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where event.type == "start" and
|
|
|
|
process.parent.name : "svchost.exe" and process.name : "cmd.exe" and
|
|
|
|
not process.args :
|
|
("??:\\Program Files\\Npcap\\CheckStatus.bat?",
|
|
"?:\\Program Files\\Npcap\\CheckStatus.bat",
|
|
"\\system32\\cleanmgr.exe",
|
|
"?:\\Windows\\system32\\silcollector.cmd",
|
|
"\\system32\\AppHostRegistrationVerifier.exe",
|
|
"\\system32\\ServerManagerLauncher.exe",
|
|
"dir",
|
|
"?:\\Program Files\\*",
|
|
"?:\\Program Files (x86)\\*",
|
|
"?:\\Windows\\LSDeployment\\Lspush.exe",
|
|
"(x86)\\FMAuditOnsite\\watchdog.bat",
|
|
"?:\\ProgramData\\chocolatey\\bin\\choco-upgrade-all.bat",
|
|
"Files\\Npcap\\CheckStatus.bat") and
|
|
|
|
/* very noisy pattern - bat or cmd script executed via scheduled tasks */
|
|
not (process.parent.args : "netsvcs" and process.args : ("?:\\*.bat", "?:\\*.cmd"))
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1059"
|
|
name = "Command and Scripting Interpreter"
|
|
reference = "https://attack.mitre.org/techniques/T1059/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|
|
|