通过恶意命名管道模拟提权

编辑

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

规则类型: eql

规则索引:

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

严重性: 高

风险评分: 73

运行频率: 5 分钟

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

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

参考:

标签:

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

版本: 206

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置

编辑

设置

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

如果在版本 <8.2 的非 elastic-agent 索引(例如 beats)上启用 EQL 规则,则事件将不会定义 event.ingested,并且 EQL 规则的默认回退功能直到 8.2 版本才添加。因此,为了使此规则有效工作,用户需要添加一个自定义的摄取管道来将 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