2020-11-17 21:23:28 +01:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/10/19"
|
|
|
|
|
maturity = "production"
|
2021-09-23 14:08:38 -03:00
|
|
|
updated_date = "2021/09/23"
|
2020-11-17 21:23:28 +01:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Identifies the use of Windows Management Instrumentation Command (WMIC) to discover certain System Security Settings
|
|
|
|
|
such as AntiVirus or Host Firewall details.
|
|
|
|
|
"""
|
|
|
|
|
from = "now-9m"
|
2021-01-28 20:53:57 -09:00
|
|
|
index = ["logs-endpoint.events.*", "winlogbeat-*", "logs-windows.*"]
|
2020-11-17 21:23:28 +01:00
|
|
|
language = "eql"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2020-11-17 21:23:28 +01:00
|
|
|
name = "Security Software Discovery using WMIC"
|
|
|
|
|
risk_score = 47
|
|
|
|
|
rule_id = "6ea55c81-e2ba-42f2-a134-bccf857ba922"
|
|
|
|
|
severity = "medium"
|
|
|
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Discovery"]
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2020-11-17 21:23:28 +01:00
|
|
|
type = "eql"
|
|
|
|
|
|
|
|
|
|
query = '''
|
|
|
|
|
process where event.type in ("start", "process_started") and
|
|
|
|
|
(process.name:"wmic.exe" or process.pe.original_file_name:"wmic.exe") and
|
|
|
|
|
process.args:"/namespace:\\\\root\\SecurityCenter2" and process.args:"Get"
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1518"
|
|
|
|
|
name = "Software Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1518/"
|
|
|
|
|
|
2021-09-23 14:08:38 -03:00
|
|
|
[[rule.threat.technique.subtechnique]]
|
|
|
|
|
id = "T1518.001"
|
|
|
|
|
name = "Security Software Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1518/001/"
|
|
|
|
|
|
2020-11-17 21:23:28 +01:00
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0007"
|
|
|
|
|
name = "Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0007/"
|
2021-02-16 10:52:48 -09:00
|
|
|
|