针对域控制器的潜在中继攻击

编辑

通过识别来自其他主机到拥有该帐户的 DC 的、使用域控制器计算机帐户进行的身份验证事件,来识别针对域控制器 (DC) 的潜在中继攻击。攻击者可能会在使用强制身份验证捕获 DC 哈希后进行中继。

规则类型: eql

规则索引:

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

严重性: 低

风险评分: 21

每隔: 5m 运行

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

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

参考:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:凭据访问
  • 数据源:Elastic Defend
  • 数据源:Active Directory
  • 用例:Active Directory 监控
  • 数据源:系统

版本: 102

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
authentication where host.os.type == "windows" and event.code in ("4624", "4625") and endswith~(user.name, "$") and
    winlog.event_data.AuthenticationPackageName : "NTLM" and winlog.logon.type : "network" and

    /* Filter for a machine account that matches the hostname */
    startswith~(host.name, substring(user.name, 0, -1)) and

    /* Verify if the Source IP belongs to the host */
    not endswith(string(source.ip), string(host.ip)) and
    source.ip != null and source.ip != "::1" and source.ip != "127.0.0.1"

框架: MITRE ATT&CKTM