通过辅助登录创建进程

编辑

识别使用备用凭据创建进程的情况。攻击者可能会使用不同的令牌创建新进程以提升权限并绕过访问控制。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-system.*
  • logs-windows.*

严重性: 中等

风险评分: 47

每隔: 5 分钟运行

搜索索引自: now-9m (日期数学格式,另见 额外回溯时间

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

参考资料:

标签:

  • 领域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:权限提升
  • 数据源:系统

版本: 110

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置

编辑

设置

需要审计事件 4624 和 4688 来触发此规则。

如果在小于 8.2 版本的非 elastic-agent 索引(例如 beats)上启用 EQL 规则,事件将不会定义 event.ingested,并且直到 8.2 版本才添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义摄取管道以将 event.ingested 填充到 @timestamp。有关添加自定义摄取管道的更多详细信息,请参考 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html

规则查询

编辑
sequence by winlog.computer_name with maxspan=1m

[authentication where event.action:"logged-in" and
 event.outcome == "success" and user.id : ("S-1-5-21-*", "S-1-12-1-*") and

 /* seclogon service */
 process.name == "svchost.exe" and
 winlog.event_data.LogonProcessName : "seclogo*" and source.ip == "::1" ] by winlog.event_data.TargetLogonId

[process where event.type == "start"] by winlog.event_data.TargetLogonId

框架: MITRE ATT&CKTM