通过流氓命名管道模拟特权升级

编辑

通过流氓命名管道模拟特权升级编辑

识别通过流氓命名管道模拟的特权升级尝试。攻击者可能通过伪装成已知的命名管道并操纵特权进程连接到该管道来滥用此技术。

规则类型: eql

规则索引:

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

严重性: 高

风险评分: 73

每隔: 5m

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

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

参考:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:特权升级
  • 数据源:Sysmon

版本: 106

规则作者:

  • Elastic

规则许可: Elastic License v2

设置编辑

设置

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

如果在版本<8.2的非弹性代理索引(如 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