通过 Microsoft 反恶意软件服务可执行文件进行潜在的 DLL 侧加载
编辑通过 Microsoft 反恶意软件服务可执行文件进行潜在的 DLL 侧加载
编辑识别已知易受 DLL 搜索顺序劫持攻击的 Windows 受信任程序,该程序在重命名后或从非标准路径启动后开始受到攻击。这是一种不常见的行为,可能表示试图通过在这些进程之一的内存空间中侧加载恶意 DLL 来规避防御。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.process-*
- logs-windows.sysmon_operational-*
- endgame-*
- logs-m365_defender.event-*
严重性: 高
风险评分: 73
每运行一次: 5 分钟
搜索索引自: now-9m (日期数学格式,另见 额外回溯时间
)
每次执行的最大告警数: 100
参考资料:
标签:
- 域:端点
- 操作系统:Windows
- 用例:威胁检测
- 策略:防御规避
- 数据源:Elastic Endgame
- 策略:执行
- 数据源:Elastic Defend
- 数据源:Sysmon
- 数据源:Microsoft Defender for Endpoint
版本: 211
规则作者:
- Elastic
- Dennis Perto
规则许可证: Elastic License v2
设置
编辑设置
如果在非 elastic-agent 索引(例如 beats)上启用 EQL 规则(版本 <8.2),则事件将不会定义 event.ingested
,并且直到 8.2 版本才添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义摄取管道以将 event.ingested
填充到 @timestamp。有关添加自定义摄取管道的更多详细信息,请参考 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html
规则查询
编辑process where host.os.type == "windows" and event.type == "start" and ( (process.pe.original_file_name == "MsMpEng.exe" and not process.name : "MsMpEng.exe") or (process.name : "MsMpEng.exe" and not process.executable : ("?:\\ProgramData\\Microsoft\\Windows Defender\\*.exe", "?:\\Program Files\\Windows Defender\\*.exe", "?:\\Program Files (x86)\\Windows Defender\\*.exe", "?:\\Program Files\\Microsoft Security Client\\*.exe", "?:\\Program Files (x86)\\Microsoft Security Client\\*.exe")) )
框架: MITRE ATT&CKTM
-
策略
- 名称:防御规避
- ID:TA0005
- 参考网址:https://attack.mitre.org/tactics/TA0005/
-
技术
- 名称:劫持执行流程
- ID:T1574
- 参考网址:https://attack.mitre.org/techniques/T1574/
-
子技术
- 名称:DLL 侧加载
- ID:T1574.002
- 参考网址:https://attack.mitre.org/techniques/T1574/002/