8e0ae64a04
* added Whoami Process Activity * Update discovery_whoami_command_activity.toml Co-authored-by: Colson Wilhoit <48036388+DefSecSentinel@users.noreply.github.com>
111 lines
4.9 KiB
TOML
111 lines
4.9 KiB
TOML
[metadata]
|
|
creation_date = "2020/02/18"
|
|
maturity = "production"
|
|
updated_date = "2022/08/03"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies suspicious use of whoami.exe which displays user, group, and privileges information for the user who is currently logged
|
|
on to the local system.
|
|
"""
|
|
false_positives = [
|
|
"""
|
|
Some normal use of this program, at varying levels of frequency, may originate from scripts, automation tools and
|
|
frameworks. Usage by non-engineers and ordinary users is unusual.
|
|
""",
|
|
]
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*", "logs-system.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Whoami Process Activity"
|
|
note = """## Triage and analysis
|
|
|
|
### Investigating Whoami Process Activity
|
|
|
|
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 the `whoami` utility. Attackers commonly use this utility to measure their current
|
|
privileges, discover the current user, determine if a privilege escalation was successful, etc.
|
|
|
|
#### 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.
|
|
- Identify the user account that performed the action and whether it should perform this kind of action.
|
|
- Investigate other alerts associated with the user/host during the past 48 hours.
|
|
- Investigate abnormal behaviors observed using the account, such as commands executed, files created or modified, and
|
|
network connections.
|
|
|
|
### 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.
|
|
|
|
### Related rules
|
|
|
|
- Account Discovery Command via SYSTEM Account - 2856446a-34e6-435b-9fb5-f8f040bfa7ed
|
|
|
|
### 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).
|
|
|
|
## 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 = "ef862985-3f13-4262-a686-5f357bbb9bc2"
|
|
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.name : "whoami.exe" and
|
|
(
|
|
|
|
(/* scoped for whoami execution under system privileges */
|
|
(user.domain : ("NT AUTHORITY", "NT-AUTORITÄT", "AUTORITE NT", "IIS APPPOOL") or user.id : ("S-1-5-18", "S-1-5-19", "S-1-5-20")) and
|
|
|
|
not (process.parent.name : "cmd.exe" and
|
|
process.parent.args : ("chcp 437>nul 2>&1 & C:\\WINDOWS\\System32\\whoami.exe /groups",
|
|
"chcp 437>nul 2>&1 & %systemroot%\\system32\\whoami /user",
|
|
"C:\\WINDOWS\\System32\\whoami.exe /groups",
|
|
"*WINDOWS\\system32\\config\\systemprofile*")) and
|
|
not (process.parent.executable : "C:\\Windows\\system32\\inetsrv\\appcmd.exe" and process.parent.args : "LIST") and
|
|
not process.parent.executable : ("C:\\Program Files\\Microsoft Monitoring Agent\\Agent\\MonitoringHost.exe",
|
|
"C:\\Program Files\\Cohesity\\cohesity_windows_agent_service.exe")) or
|
|
|
|
process.parent.name : ("wsmprovhost.exe", "w3wp.exe", "wmiprvse.exe", "rundll32.exe", "regsvr32.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/"
|
|
|