4233fef238
* win folder * Other folders * Update test_all_rules.py * . * updated missing elastic defend tags --------- Co-authored-by: terrancedejesus <terrance.dejesus@elastic.co>
53 lines
1.7 KiB
TOML
53 lines
1.7 KiB
TOML
[metadata]
|
|
creation_date = "2020/09/02"
|
|
integration = ["endpoint", "windows"]
|
|
maturity = "production"
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
min_stack_version = "8.3.0"
|
|
updated_date = "2023/06/22"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies InstallUtil.exe making outbound network connections. This may indicate adversarial activity as InstallUtil is
|
|
often leveraged by adversaries to execute code and evade detection.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["logs-endpoint.events.*", "winlogbeat-*", "logs-windows.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "InstallUtil Process Making Network Connections"
|
|
risk_score = 47
|
|
rule_id = "a13167f1-eec2-4015-9631-1fee60406dcf"
|
|
severity = "medium"
|
|
tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Defense Evasion", "Data Source: Elastic Defend"]
|
|
type = "eql"
|
|
|
|
query = '''
|
|
/* the benefit of doing this as an eql sequence vs kql is this will limit to alerting only on the first network connection */
|
|
|
|
sequence by process.entity_id
|
|
[process where host.os.type == "windows" and event.type == "start" and process.name : "installutil.exe"]
|
|
[network where host.os.type == "windows" and process.name : "installutil.exe" and network.direction : ("outgoing", "egress")]
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1218"
|
|
name = "System Binary Proxy Execution"
|
|
reference = "https://attack.mitre.org/techniques/T1218/"
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1218.004"
|
|
name = "InstallUtil"
|
|
reference = "https://attack.mitre.org/techniques/T1218/004/"
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0005"
|
|
name = "Defense Evasion"
|
|
reference = "https://attack.mitre.org/tactics/TA0005/"
|
|
|