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

编辑

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

编辑

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

规则类型: eql

规则索引:

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

严重性: 低

风险评分: 21

运行频率: 5 分钟

搜索索引时间范围: 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