通过 tmux 或 screen 启动的潜在可疑进程

编辑

通过 tmux 或 screen 启动的潜在可疑进程

编辑

此规则监控通过 screen 和 tmux 执行可疑命令的情况。在启动命令并直接分离时,命令将通过其父进程在后台执行。攻击者可能会利用 screen 或 tmux 执行命令,同时试图逃避检测。

规则类型: eql

规则索引:

  • logs-endpoint.events.*
  • endgame-*

严重程度: 低

风险评分: 21

每隔: 5m

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

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

参考文献: 无

标签:

  • 域:端点
  • 操作系统:Linux
  • 用例:威胁检测
  • 策略:防御规避
  • 数据源:Elastic Defend
  • 数据源:Elastic Endgame

版本: 5

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event") and
process.parent.name in ("screen", "tmux") and process.name like (
  "nmap", "nc", "ncat", "netcat", "socat", "nc.openbsd", "ngrok", "ping", "java", "php*", "perl", "ruby", "lua*",
  "openssl", "telnet", "wget", "curl", "id"
)

框架: MITRE ATT&CKTM