通过本地 Kerberos 身份验证创建服务

edit

通过本地 Kerberos 身份验证创建服务edit

识别可疑的本地成功登录事件,其中登录包为 Kerberos,远程地址设置为 localhost,随后从相同的 LogonId 创建服务。这可能表明尝试利用 Kerberos 中继攻击变体,该变体可用于从加入域的用户将权限提升到本地系统权限。

规则类型: eql

规则索引:

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

严重性: 高

风险评分: 73

: 5m

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

每次执行的最大警报: 100

参考:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:权限提升
  • 战术:凭据访问
  • 用例:活动目录监控
  • 数据源:活动目录

版本: 105

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询edit

sequence by winlog.computer_name with maxspan=5m
 [authentication where

  /* event 4624 need to be logged */
  event.action == "logged-in" and event.outcome == "success" and

  /* authenticate locally using relayed kerberos Ticket */
  winlog.event_data.AuthenticationPackageName :"Kerberos" and winlog.logon.type == "Network" and
  cidrmatch(source.ip, "127.0.0.0/8", "::1") and source.port > 0] by winlog.event_data.TargetLogonId

  [any where
   /* event 4697 need to be logged */
   event.action : "service-installed"] by winlog.event_data.SubjectLogonId

框架: MITRE ATT&CKTM