2020-11-30 23:24:44 +01:00
[ metadata ]
creation_date = "2020/10/28"
2025-09-01 09:30:21 -07:00
integration = [ "endpoint" , "windows" , "m365_defender" , "sentinel_one_cloud_funnel" , "crowdstrike" ]
2020-11-30 23:24:44 +01:00
maturity = "production"
2025-09-01 09:30:21 -07:00
updated_date = "2025/08/26"
2020-11-30 23:24:44 +01:00
[ rule ]
author = [ "Elastic" ]
description = "" "
2021-02-16 10:52:48 -09:00
Identifies the creation, change, or deletion of a DLL module within a Windows SxS local folder. Adversaries may abuse
shared modules to execute malicious payloads by instructing the Windows module loader to load DLLs from arbitrary local
paths.
2020-11-30 23:24:44 +01:00
" ""
from = "now-9m"
2025-03-26 20:34:14 +05:30
index = [
"winlogbeat-*" ,
"logs-endpoint.events.file-*" ,
"logs-windows.sysmon_operational-*" ,
"endgame-*" ,
"logs-m365_defender.event-*" ,
"logs-sentinel_one_cloud_funnel.*" ,
2025-09-01 09:30:21 -07:00
"logs-crowdstrike.fdr*" ,
2025-03-26 20:34:14 +05:30
]
2020-11-30 23:24:44 +01:00
language = "eql"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-11-30 23:24:44 +01:00
name = "Execution via local SxS Shared Module"
2021-05-10 13:40:56 -08:00
note = "" "## Triage and analysis
2022-04-01 15:27:08 -08:00
The SxS DotLocal folder is a legitimate feature that can be abused to hijack standard modules loading order by forcing an executable on the same application.exe.local folder to load a malicious DLL module from the same directory.
" ""
2020-11-30 23:24:44 +01:00
references = [ "https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-redirection" ]
2021-02-08 13:15:42 -05:00
risk_score = 47
2020-11-30 23:24:44 +01:00
rule_id = "a3ea12f3-0d4e-4667-8b44-4230c63f3c75"
severity = "medium"
2024-05-23 00:45:10 +05:30
tags = [
"Domain: Endpoint" ,
"OS: Windows" ,
"Use Case: Threat Detection" ,
"Tactic: Execution" ,
"Data Source: Elastic Endgame" ,
"Data Source: Elastic Defend" ,
"Data Source: Sysmon" ,
2024-10-11 15:58:37 -03:00
"Data Source: Microsoft Defender for Endpoint" ,
"Data Source: SentinelOne" ,
2025-09-01 09:30:21 -07:00
"Data Source: Crowdstrike" ,
2025-01-22 11:17:38 -06:00
"Resources: Investigation Guide" ,
2024-05-23 00:45:10 +05:30
]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2020-11-30 23:24:44 +01:00
type = "eql"
query = '' '
2025-09-01 09:30:21 -07:00
file where host.os.type == "windows" and file.extension : "dll" and
file.path : (
"C:\\*\\*.exe.local\\*.dll",
/* Crowdstrike specific condition as it uses NT Object paths */
"\\Device\\HarddiskVolume*\\*\\*.exe.local\\*.dll"
)
2020-11-30 23:24:44 +01:00
' ''
[ [ rule . threat ] ]
framework = "MITRE ATT&CK"
[ [ rule . threat . technique ] ]
id = "T1129"
name = "Shared Modules"
reference = "https://attack.mitre.org/techniques/T1129/"
[ rule . threat . tactic ]
id = "TA0002"
name = "Execution"
reference = "https://attack.mitre.org/tactics/TA0002/"
2021-02-16 10:52:48 -09:00