a52751494e
* Convert config header to setup in note field * Parse note field into separate setup and note field with marko gfm * only validate and parse note on elastic authored rules and add CLI description for new DR_BYPASS_NOTE_VALIDATION_AND_PARSE environment variable Co-authored-by: brokensound77 <brokensound77@users.noreply.github.com>
93 lines
4.1 KiB
TOML
93 lines
4.1 KiB
TOML
[metadata]
|
|
creation_date = "2020/03/18"
|
|
maturity = "production"
|
|
min_stack_comments = "EQL optional fields syntax was not introduced until 7.16"
|
|
min_stack_version = "7.16.0"
|
|
updated_date = "2022/04/21"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies when the SYSTEM account uses an account discovery utility. This could be a sign of discovery activity after
|
|
an adversary has achieved privilege escalation.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Account Discovery Command via SYSTEM Account"
|
|
note = """## Triage and analysis
|
|
|
|
### Investigating Account Discovery Command via SYSTEM Account
|
|
|
|
After successfully compromising an environment, attackers may try to gain situational awareness to plan their next steps.
|
|
This can happen by running commands to enumerate network resources, users, connections, files, and installed security
|
|
software.
|
|
|
|
This rule looks for the execution of account discovery utilities using the SYSTEM account, which is commonly observed
|
|
after attackers successfully perform privilege escalation or exploit web applications.
|
|
|
|
#### 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.
|
|
- If the process tree includes a web-application server process such as w3wp, httpd.exe, nginx.exe and alike,
|
|
investigate any suspicious file creation or modification in the last 48 hours to assess the presence of any potential
|
|
webshell backdoor.
|
|
- Investigate other alerts associated with the user/host during the past 48 hours.
|
|
- Determine how the SYSTEM account is being used. For example, users with administrator privileges can spawn a system
|
|
shell using Windows services, scheduled tasks or other third party utilities.
|
|
|
|
### False positive analysis
|
|
|
|
- Discovery activities are not inherently malicious if they occur in isolation. As long as the analyst did not identify
|
|
suspicious activity related to the user or host, such alerts can be dismissed.
|
|
|
|
### Response and remediation
|
|
|
|
- Initiate the incident response process based on the outcome of the triage.
|
|
- Isolate the involved hosts to prevent further post-compromise behavior.
|
|
- 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.
|
|
- 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 via 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).
|
|
- Use the data collected through the analysis to investigate other machines affected in the environment.
|
|
|
|
## 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.
|
|
"""
|
|
risk_score = 21
|
|
rule_id = "2856446a-34e6-435b-9fb5-f8f040bfa7ed"
|
|
severity = "low"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Discovery"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where event.type in ("start", "process_started") and
|
|
(?process.Ext.token.integrity_level_name : "System" or
|
|
?winlog.event_data.IntegrityLevel : "System") and
|
|
(process.name : "whoami.exe" or
|
|
(process.name : "net1.exe" and not process.parent.name : "net.exe"))
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1033"
|
|
name = "System Owner/User Discovery"
|
|
reference = "https://attack.mitre.org/techniques/T1033/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0007"
|
|
name = "Discovery"
|
|
reference = "https://attack.mitre.org/tactics/TA0007/"
|
|
|