cmd.exe 异常父进程编辑

识别来自异常进程的 cmd.exe 具有可疑的父子进程关系。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-endpoint.events.process-*
  • logs-windows.sysmon_operational-*
  • endgame-*
  • logs-sentinel_one_cloud_funnel.*
  • logs-m365_defender.event-*

严重程度: 中等

风险评分: 47

: 5m

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

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

参考: 无

标签:

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

版本: 313

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置编辑

设置

如果在非 elastic-agent 索引(如 beats)上启用 EQL 规则,且版本 <8.2,则事件将不会定义 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.name : "cmd.exe" and
  process.parent.name : ("lsass.exe",
                         "csrss.exe",
                         "epad.exe",
                         "regsvr32.exe",
                         "dllhost.exe",
                         "LogonUI.exe",
                         "wermgr.exe",
                         "spoolsv.exe",
                         "jucheck.exe",
                         "jusched.exe",
                         "ctfmon.exe",
                         "taskhostw.exe",
                         "GoogleUpdate.exe",
                         "sppsvc.exe",
                         "sihost.exe",
                         "slui.exe",
                         "SIHClient.exe",
                         "SearchIndexer.exe",
                         "SearchProtocolHost.exe",
                         "FlashPlayerUpdateService.exe",
                         "WerFault.exe",
                         "WUDFHost.exe",
                         "unsecapp.exe",
                         "wlanext.exe" ) and
  not (process.parent.name : "dllhost.exe" and process.parent.args : "/Processid:{CA8C87C1-929D-45BA-94DB-EF8E6CB346AD}")

框架: MITRE ATT&CKTM