2023-07-31 11:03:57 -03:00
|
|
|
[metadata]
|
2024-05-23 00:45:10 +05:30
|
|
|
bypass_bbr_timing = true
|
2023-07-31 11:03:57 -03:00
|
|
|
creation_date = "2023/07/14"
|
|
|
|
|
integration = ["endpoint"]
|
|
|
|
|
maturity = "production"
|
2026-04-01 09:12:42 -05:00
|
|
|
updated_date = "2026/03/24"
|
2023-07-31 11:03:57 -03:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
2023-10-11 09:43:26 +02:00
|
|
|
building_block_type = "default"
|
2023-07-31 11:03:57 -03:00
|
|
|
description = """
|
|
|
|
|
This rule identifies the execution of commands that can be used to enumerate network connections. Adversaries may
|
2024-05-23 00:45:10 +05:30
|
|
|
attempt to get a listing of network connections to or from a compromised system to identify targets within an
|
|
|
|
|
environment.
|
2023-07-31 11:03:57 -03:00
|
|
|
"""
|
2023-10-11 09:43:26 +02:00
|
|
|
from = "now-9m"
|
2024-04-08 08:57:33 -03:00
|
|
|
index = ["logs-endpoint.events.process-*"]
|
2023-07-31 11:03:57 -03:00
|
|
|
language = "eql"
|
|
|
|
|
license = "Elastic License v2"
|
|
|
|
|
name = "Windows System Network Connections Discovery"
|
|
|
|
|
risk_score = 21
|
|
|
|
|
rule_id = "c4e9ed3e-55a2-4309-a012-bc3c78dad10a"
|
|
|
|
|
severity = "low"
|
2024-05-23 00:45:10 +05:30
|
|
|
tags = [
|
|
|
|
|
"Domain: Endpoint",
|
|
|
|
|
"OS: Windows",
|
|
|
|
|
"Use Case: Threat Detection",
|
|
|
|
|
"Tactic: Discovery",
|
|
|
|
|
"Rule Type: BBR",
|
|
|
|
|
"Data Source: Elastic Defend",
|
|
|
|
|
]
|
2023-07-31 11:03:57 -03:00
|
|
|
timestamp_override = "event.ingested"
|
|
|
|
|
type = "eql"
|
|
|
|
|
|
|
|
|
|
query = '''
|
|
|
|
|
process where event.type == "start" and
|
|
|
|
|
(
|
|
|
|
|
process.name : "netstat.exe" or
|
|
|
|
|
(
|
|
|
|
|
(
|
|
|
|
|
(process.name : "net.exe" or process.pe.original_file_name == "net.exe") or
|
|
|
|
|
(
|
|
|
|
|
(process.name : "net1.exe" or process.pe.original_file_name == "net1.exe") and
|
|
|
|
|
not process.parent.name : "net.exe"
|
|
|
|
|
)
|
|
|
|
|
) and process.args : ("use", "user", "session", "config") and not process.args: ("/persistent:*", "/delete", "\\\\*")
|
|
|
|
|
) or
|
|
|
|
|
(process.name : "nbtstat.exe" and process.args : "-s*")
|
|
|
|
|
) and not user.id : "S-1-5-18"
|
|
|
|
|
'''
|
|
|
|
|
|
2024-05-23 00:45:10 +05:30
|
|
|
|
2023-07-31 11:03:57 -03:00
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
2026-04-01 09:12:42 -05:00
|
|
|
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1016"
|
|
|
|
|
name = "System Network Configuration Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1016/"
|
|
|
|
|
|
2023-07-31 11:03:57 -03:00
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1049"
|
|
|
|
|
name = "System Network Connections Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1049/"
|
2023-10-11 09:43:26 +02:00
|
|
|
|
2023-07-31 11:03:57 -03:00
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1082"
|
|
|
|
|
name = "System Information Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1082/"
|
|
|
|
|
|
2026-04-01 09:12:42 -05:00
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1087"
|
|
|
|
|
name = "Account Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1087/"
|
2024-05-23 00:45:10 +05:30
|
|
|
|
2023-07-31 11:03:57 -03:00
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0007"
|
|
|
|
|
name = "Discovery"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0007/"
|