通过 WMI 执行可疑命令edit

识别通过 Windows Management Instrumentation (WMI) 在远程主机上执行的可疑命令(cmd)。这可能是攻击者横向移动的迹象。

规则类型: eql

规则索引:

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

严重程度: 中等

风险评分: 47

每隔: 5m

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

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

参考资料: 无

标签:

  • 领域: 端点
  • 操作系统: Windows
  • 用例: 威胁检测
  • 战术: 执行
  • 数据源: Elastic Endgame
  • 数据源: Elastic Defend

版本: 111

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置edit

设置

如果在非 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

规则查询edit

process where host.os.type == "windows" and event.type == "start" and
 process.parent.name : "WmiPrvSE.exe" and process.name : "cmd.exe" and
 process.args : "\\\\127.0.0.1\\*" and process.args : ("2>&1", "1>")

框架: MITRE ATT&CKTM