服务命令横向移动编辑

识别使用 sc.exe 在远程主机上创建、修改或启动服务的情况。这可能是对手横向移动的指示,但如果管理员经常这样做,则会产生噪音。

规则类型: eql

规则索引:

  • logs-endpoint.events.process-*
  • logs-endpoint.events.network-*
  • winlogbeat-*
  • logs-windows.sysmon_operational-*

严重性: 低

风险评分: 21

每隔运行: 5 分钟

从以下时间开始搜索索引: now-9m (日期数学格式,另请参见 其他回溯时间)

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

参考: 无

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:横向移动
  • 数据源:Elastic Defend
  • 数据源:Sysmon

版本: 107

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询编辑

sequence by process.entity_id with maxspan = 1m
  [process where host.os.type == "windows" and event.type == "start" and
     (process.name : "sc.exe" or process.pe.original_file_name : "sc.exe") and
      process.args : "\\\\*" and process.args : ("binPath=*", "binpath=*") and
      process.args : ("create", "config", "failure", "start")]
  [network where host.os.type == "windows" and process.name : "sc.exe" and destination.ip != "127.0.0.1"]

框架:MITRE ATT&CKTM