使用内置工具进行进程发现

编辑

此规则识别可用于枚举正在运行的进程的命令的执行。攻击者可能会枚举进程以识别已安装的应用程序和安全解决方案。

规则类型: eql

规则索引:

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

严重程度: 低

风险评分: 21

运行频率: 5 分钟

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

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

参考: 无

标签:

  • 域: 端点
  • 操作系统: Windows
  • 用例: 威胁检测
  • 战术: 发现
  • 规则类型: BBR
  • 数据源: Elastic Defend
  • 数据源: Elastic Endgame
  • 数据源: 系统

版本: 106

规则作者:

  • Elastic

规则许可: Elastic License v2

规则查询

编辑
process where host.os.type == "windows" and event.type == "start" and
  (
    process.name :("PsList.exe", "qprocess.exe") or
   (process.name : "powershell.exe" and process.args : ("*get-process*", "*Win32_Process*")) or
   (process.name : "wmic.exe" and process.args : ("process", "*Win32_Process*")) or
   (process.name : "tasklist.exe" and not process.args : ("pid eq*")) or
   (process.name : "query.exe" and process.args : "process")
  ) and not user.id : "S-1-5-18"

框架: MITRE ATT&CKTM