系统虚拟进程的异常子进程编辑

识别 Windows 虚拟系统进程的异常子进程,这可能表明代码注入。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-endpoint.events.process-*
  • logs-windows.*
  • endgame-*
  • logs-system.security*

严重程度: 高

风险评分: 73

每隔: 5m 运行

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

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

参考: 无

标签:

  • 域: 端点
  • 操作系统: Windows
  • 用例: 威胁检测
  • 战术: 防御逃避
  • 数据源: Elastic Endgame
  • 数据源: Elastic Defend

版本: 110

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置编辑

设置

如果在非 elastic-agent 索引(如 beats)上为版本 <8.2 启用 EQL 规则,则事件将不会定义 event.ingested,并且 EQL 规则的默认回退直到版本 8.2 才添加。因此,为了使此规则有效工作,用户需要添加一个自定义摄取管道来将 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.parent.pid == 4 and process.executable : "?*" and
  not process.executable : ("Registry", "MemCompression", "?:\\Windows\\System32\\smss.exe")

框架: MITRE ATT&CKTM