SUID/SGID 位集编辑

攻击者可能会向文件或目录添加 setuid 或 setgid 位,以便使用拥有用户或组的权限运行文件。攻击者可以利用此功能进行 shell 逃逸或利用具有 setuid 或 setgid 位的应用程序中的漏洞,以在不同用户的上下文中运行代码。此外,攻击者可以在自己的恶意软件上使用此机制,以确保他们将来能够在提升的环境中执行。

规则类型: eql

规则索引:

  • auditbeat-*
  • logs-endpoint.events.*

严重性: 低

风险评分: 21

每隔运行: 5 分钟

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

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

参考: 无

标签:

  • 域:端点
  • 操作系统:Linux
  • 操作系统:macOS
  • 用例:威胁检测
  • 策略:权限提升
  • 数据源:Elastic Defend

版本: 104

规则作者:

  • Elastic

规则许可证: Elastic 许可证 v2

规则查询编辑

process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and (
  (process.name == "chmod" and (process.args : ("+s", "u+s", "g+s") or process.args regex "[24][0-9]{3}")) or
  (process.name == "install" and process.args : "-m" and
  (process.args : ("+s", "u+s", "g+s") or process.args regex "[24][0-9]{3}"))
) and not (
  process.parent.executable : (
    "/usr/NX/*", "/var/lib/docker/*", "/var/lib/dpkg/info*", "/tmp/newroot/*",
    "/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/XPCServices/package_script_service.xpc/Contents/MacOS/package_script_service"
  ) or
  process.args : (
    "/run/*", "/var/run/*", "/usr/bin/keybase-redirector", "/usr/local/share/fonts", "/usr/bin/ssh-agent"
  )
)

框架: MITRE ATT&CKTM