可疑的 DLL 已加载,用于持久性或提权
编辑可疑的 DLL 已加载,用于持久性或提权编辑
识别加载了非 Microsoft 签名的 DLL,该 DLL 在默认 Windows 安装(幻影 DLL)中不存在,或者可以通过本机 Windows 进程从其他位置加载该 DLL。这可能会被滥用,通过特权文件写入漏洞来持久化或提升权限。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.library*
- logs-windows.sysmon_operational-*
- endgame-*
严重性: 高
风险评分: 73
每隔: 5 分钟运行
每次执行的最大警报数: 100
参考:
- https://itm4n.github.io/windows-dll-hijacking-clarified/
- http://remoteawesomethoughts.blogspot.com/2019/05/windows-10-task-schedulerservice.html
- https://googleprojectzero.blogspot.com/2018/04/windows-exploitation-tricks-exploiting.html
- https://shellz.club/2020/10/16/edgegdi-dll-for-persistence-and-lateral-movement.html
- https://windows-internals.com/faxing-your-way-to-system/
- http://waleedassar.blogspot.com/2013/01/wow64logdll.html
标签:
- 域:端点
- 操作系统:Windows
- 用例:威胁检测
- 策略:持久性
- 策略:提权
- 策略:防御规避
- 资源:调查指南
- 数据源:Elastic Endgame
- 数据源:Elastic Defend
- 数据源:Sysmon
版本: 111
规则作者:
- Elastic
规则许可证:Elastic 许可证 v2
调查指南编辑
分类和分析
调查为持久性或权限提升加载的可疑 DLL
攻击者可以通过滥用进程尝试加载的缺失模块来执行恶意代码,从而使他们能够提升权限或获得持久性。此规则标识加载了在默认 Windows 安装中缺失的非 Microsoft 签名的 DLL,或者可以由本机 Windows 进程从其他位置加载的 DLL。
可能的调查步骤
- 检查 DLL 签名并识别创建它的进程。
- 调查进程的任何异常行为,例如网络连接、注册表或文件修改以及任何生成的子进程。
- 调查过去 48 小时内与用户/主机关联的其他警报。
- 检索 DLL 并确定它是否恶意
- 使用私有沙盒恶意软件分析系统执行分析。
- 观察并收集有关以下活动的信息
- 尝试联系外部域和地址。
- 文件和注册表访问、修改和创建活动。
- 服务创建和启动活动。
- 计划任务创建。
- 使用 PowerShell Get-FileHash cmdlet 获取文件的 SHA-256 哈希值。
- 在 VirusTotal、Hybrid-Analysis、CISCO Talos、Any.run 等资源中搜索哈希的存在和声誉。
误报分析
- 此活动不太可能合法发生。任何触发警报且本质上不恶意的活动都必须由安全团队监控。
响应和补救
- 根据分类结果启动事件响应流程。
- 隔离涉及的主机以防止进一步的泄露后行为。
- 如果分类识别出恶意软件,请在环境中搜索其他受感染的主机。
- 实施临时网络规则、程序和分段以遏制恶意软件。
- 停止可疑进程。
- 立即阻止已识别的妥协指标 (IoC)。
- 检查受影响的系统,是否存在攻击者可能用于重新感染系统的其他恶意软件后门,例如反向 shell、反向代理或投放器。
- 删除和阻止在分类期间识别的恶意工件。
- 运行完整的反恶意软件扫描。这可能会揭示系统中留下的其他工件、持久性机制和恶意软件组件。
- 调查攻击者妥协或使用的系统上的凭据泄露情况,以确保识别所有妥协的帐户。重置这些帐户和其他可能受损的凭据的密码,例如电子邮件、业务系统和网络服务。
- 确定攻击者滥用的初始向量,并采取措施防止通过同一向量重新感染。
- 使用事件响应数据,更新日志记录和审计策略,以缩短平均检测时间 (MTTD) 和平均响应时间 (MTTR)。
设置编辑
设置
如果在非 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
规则查询编辑
any where host.os.type == "windows" and (event.category : ("driver", "library") or (event.category == "process" and event.action : "Image loaded*")) and ( /* compatible with Elastic Endpoint Library Events */ (?dll.name : ("wlbsctrl.dll", "wbemcomn.dll", "WptsExtensions.dll", "Tsmsisrv.dll", "TSVIPSrv.dll", "Msfte.dll", "wow64log.dll", "WindowsCoreDeviceInfo.dll", "Ualapi.dll", "wlanhlp.dll", "phoneinfo.dll", "EdgeGdi.dll", "cdpsgshims.dll", "windowsperformancerecordercontrol.dll", "diagtrack_win.dll", "oci.dll", "TPPCOIPW32.dll", "tpgenlic.dll", "thinmon.dll", "fxsst.dll", "msTracer.dll") and (?dll.code_signature.trusted != true or ?dll.code_signature.exists != true)) or /* compatible with Sysmon EventID 7 - Image Load */ (file.name : ("wlbsctrl.dll", "wbemcomn.dll", "WptsExtensions.dll", "Tsmsisrv.dll", "TSVIPSrv.dll", "Msfte.dll", "wow64log.dll", "WindowsCoreDeviceInfo.dll", "Ualapi.dll", "wlanhlp.dll", "phoneinfo.dll", "EdgeGdi.dll", "cdpsgshims.dll", "windowsperformancerecordercontrol.dll", "diagtrack_win.dll", "oci.dll", "TPPCOIPW32.dll", "tpgenlic.dll", "thinmon.dll", "fxsst.dll", "msTracer.dll") and not file.path : ("?:\\Windows\\System32\\wbemcomn.dll", "?:\\Windows\\SysWOW64\\wbemcomn.dll") and not file.hash.sha256 : ("6e837794fc282446906c36d681958f2f6212043fc117c716936920be166a700f", "b14e4954e8cca060ffeb57f2458b6a3a39c7d2f27e94391cbcea5387652f21a4", "c258d90acd006fa109dc6b748008edbb196d6168bc75ace0de0de54a4db46662") and not file.code_signature.status == "Valid") )
框架: MITRE ATT&CKTM
-
策略
- 名称:特权升级
- ID:TA0004
- 参考网址:https://attack.mitre.org/tactics/TA0004/
-
技术
- 名称:劫持执行流程
- ID:T1574
- 参考网址:https://attack.mitre.org/techniques/T1574/
-
子技术
- 名称:DLL 旁加载
- ID:T1574.002
- 参考网址:https://attack.mitre.org/techniques/T1574/002/
-
策略
- 名称:持久性
- ID:TA0003
- 参考 URL:https://attack.mitre.org/tactics/TA0003/
-
技术
- 名称:劫持执行流程
- ID:T1574
- 参考网址:https://attack.mitre.org/techniques/T1574/
-
子技术
- 名称:DLL 搜索顺序劫持
- ID:T1574.001
- 参考 URL:https://attack.mitre.org/techniques/T1574/001/
-
策略
- 名称:防御规避
- ID:TA0005
- 参考 URL:https://attack.mitre.org/tactics/TA0005/
-
技术
- 名称:伪装
- ID:T1036
- 参考 URL:https://attack.mitre.org/techniques/T1036/
-
子技术
- 名称:无效代码签名
- ID:T1036.001
- 参考 URL:https://attack.mitre.org/techniques/T1036/001/