0fe09aaed5
* [New Rule] NullSessionPipe Registry Modification * Update lateral_movement_defense_evasion_lanman_nullsessionpipe_modification.toml * Update rules/windows/lateral_movement_defense_evasion_lanman_nullsessionpipe_modification.toml Co-authored-by: Brent Murphy <56412096+bm11100@users.noreply.github.com> Co-authored-by: Brent Murphy <56412096+bm11100@users.noreply.github.com>
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[metadata]
|
|
creation_date = "2021/03/22"
|
|
maturity = "production"
|
|
updated_date = "2021/03/22"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies NullSessionPipe registry modifications that specify which pipes can be accessed anonymously. This could
|
|
be indicative of adversary lateral movement preparation by making the added pipe available to everyone.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["logs-endpoint.events.*", "winlogbeat-*", "logs-windows.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "NullSessionPipe Registry Modification"
|
|
references = [
|
|
"https://www.welivesecurity.com/2019/05/29/turla-powershell-usage/",
|
|
"https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/network-access-restrict-anonymous-access-to-named-pipes-and-shares",
|
|
]
|
|
risk_score = 47
|
|
rule_id = "ddab1f5f-7089-44f5-9fda-de5b11322e77"
|
|
severity = "medium"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Lateral Movement"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
registry where
|
|
registry.path : "HKLM\\SYSTEM\\*ControlSet*\\services\\LanmanServer\\Parameters\\NullSessionPipes" and
|
|
registry.data.strings != null
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1021"
|
|
name = "Remote Services"
|
|
reference = "https://attack.mitre.org/techniques/T1021/"
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1021.002"
|
|
name = "SMB/Windows Admin Shares"
|
|
reference = "https://attack.mitre.org/techniques/T1021/002/"
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0008"
|
|
name = "Lateral Movement"
|
|
reference = "https://attack.mitre.org/tactics/TA0008/"
|