通过伪造命名管道模拟进行权限提升

编辑

通过伪造命名管道模拟进行权限提升

编辑

识别通过伪造命名管道模拟进行权限提升的尝试。攻击者可能会滥用此技术,伪装成已知的命名管道并操纵特权进程连接到它。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-windows.sysmon_operational-*

严重性: 高

风险评分: 73

每隔: 5m 运行

搜索索引自: now-9m (日期数学格式,另请参见 额外回溯时间)

每次执行的最大告警数: 100

参考资料:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:权限提升
  • 数据源:Sysmon

版本: 206

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置

编辑

设置

需要在 Sysmon 配置中启用命名管道创建事件,方法是包含以下设置:condition equal "contains" and keyword equal "pipe"

如果在非 elastic-agent 索引(例如 beats)上为低于 8.2 的版本启用 EQL 规则,则事件将不会定义 event.ingested,并且直到 8.2 版本才添加 EQL 规则的默认回退。因此,为了使此规则有效,用户需要添加一个自定义摄取管道来将 event.ingested 填充为 @timestamp。有关添加自定义摄取管道的更多详细信息,请参考 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html

规则查询

编辑
file where host.os.type == "windows" and event.action : "Pipe Created*" and
 /* normal sysmon named pipe creation events truncate the pipe keyword */
  file.name : "\\*\\Pipe\\*"

框架: MITRE ATT&CKTM