e8c54169a4
* Prep for Release 9.1 * Update Patch Version * Update Patch version * Update Patch version
76 lines
1.9 KiB
TOML
76 lines
1.9 KiB
TOML
[metadata]
|
|
bypass_bbr_timing = true
|
|
creation_date = "2023/07/06"
|
|
integration = ["windows", "endpoint", "system"]
|
|
maturity = "production"
|
|
updated_date = "2025/03/20"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
building_block_type = "default"
|
|
description = """
|
|
Detects the execution of commands used to discover information about the system, which attackers may use after
|
|
compromising a system to gain situational awareness.
|
|
"""
|
|
from = "now-9m"
|
|
index = [
|
|
"endgame-*",
|
|
"logs-endpoint.events.process-*",
|
|
"logs-system.security*",
|
|
"logs-windows.*",
|
|
"winlogbeat-*",
|
|
]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Windows System Information Discovery"
|
|
risk_score = 21
|
|
rule_id = "51176ed2-2d90-49f2-9f3d-17196428b169"
|
|
severity = "low"
|
|
tags = [
|
|
"Domain: Endpoint",
|
|
"OS: Windows",
|
|
"Use Case: Threat Detection",
|
|
"Tactic: Discovery",
|
|
"Rule Type: BBR",
|
|
"Data Source: Elastic Defend",
|
|
"Data Source: Elastic Endgame",
|
|
"Data Source: Windows Security Event Logs",
|
|
]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where host.os.type == "windows" and event.type == "start" and
|
|
(
|
|
(
|
|
process.name : "cmd.exe" and process.args : "ver*" and not
|
|
process.parent.executable : (
|
|
"?:\\Users\\*\\AppData\\Local\\Keybase\\upd.exe",
|
|
"?:\\Users\\*\\python*.exe"
|
|
)
|
|
) or
|
|
process.name : ("systeminfo.exe", "hostname.exe") or
|
|
(process.name : "wmic.exe" and process.args : "os" and process.args : "get")
|
|
) and not
|
|
process.parent.executable : (
|
|
"?:\\Program Files\\*",
|
|
"?:\\Program Files (x86)\\*",
|
|
"?:\\ProgramData\\*"
|
|
) and not user.id : "S-1-5-18"
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1082"
|
|
name = "System Information Discovery"
|
|
reference = "https://attack.mitre.org/techniques/T1082/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0007"
|
|
name = "Discovery"
|
|
reference = "https://attack.mitre.org/tactics/TA0007/"
|
|
|