异常进程发起的潜在 RDP 外部连接

编辑

攻击者可能会尝试通过 Windows 远程桌面协议 (RDP) 连接到远程系统以实现横向移动。攻击者可能会避免使用 Microsoft 终端服务客户端 (mstsc.exe) 二进制文件来建立 RDP 连接以逃避检测。

规则类型: eql

规则索引:

  • logs-endpoint.events.network-*

严重性: 低

风险评分: 21

运行频率: 60 分钟

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

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

参考: 无

标签:

  • 领域:终端
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:横向移动
  • 数据来源:Elastic Defend
  • 规则类型:BBR

版本: 4

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
network where host.os.type == "windows" and
  event.action == "connection_attempted" and destination.port == 3389 and
  destination.ip != "::1" and destination.ip != "127.0.0.1" and
  not (
    process.executable : (
      "?:\\Windows\\System32\\mstsc.exe",
      "?:\\Program Files (x86)\\mRemoteNG\\mRemoteNG.exe",
      "?:\\Program Files (x86)\\PRTG Network Monitor\\PRTG Probe.exe",
      "?:\\Program Files\\Azure Advanced Threat Protection Sensor\\*\\Microsoft.Tri.Sensor.exe",
      "?:\\Program Files (x86)\\Microsoft\\Remote Desktop Connection Manager\\RDCMan.exe",
      "?:\\Program Files\\SentinelOne\\Sentinel Agent*\\Ranger\\SentinelRanger.exe",
      "?:\\Program Files\\Devolutions\\Remote Desktop Manager\\RemoteDesktopManager.exe",
      "?:\\Program Files (x86)\\Devolutions\\Remote Desktop Manager\\RemoteDesktopManager.exe"
    ) and process.code_signature.trusted == true
  )

框架: MITRE ATT&CKTM