尝试禁用 IPTables 或防火墙

编辑

攻击者可能会尝试禁用 iptables 或防火墙服务,以试图影响主机如何接收或发送网络流量。

规则类型: eql

规则索引:

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

严重性: 低

风险评分: 21

运行频率: 5 分钟

搜索索引起始时间: now-9m ( 日期数学格式,另请参阅 附加回溯时间)

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

参考:

标签:

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

版本: 9

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置

编辑

设置

此规则需要来自 Elastic Defend 的数据。

Elastic Defend 集成设置

Elastic Defend 使用 Fleet 集成到 Elastic Agent 中。配置后,该集成允许 Elastic Agent 监控主机上的事件并将数据发送到 Elastic Security 应用。

先决条件

  • Elastic Defend 需要 Fleet。
  • 要配置 Fleet Server,请参阅文档

应执行以下步骤,以便在 Linux 系统上添加 Elastic Defend 集成

  • 转到 Kibana 主页并单击“添加集成”。
  • 在查询栏中,搜索“Elastic Defend”并选择该集成以查看更多详细信息。
  • 单击“添加 Elastic Defend”。
  • 配置集成名称并可选择添加描述。
  • 选择要保护的环境类型,“传统端点”或“云工作负载”。
  • 选择一个配置预设。每个预设都带有 Elastic Agent 的不同默认设置,您稍后可以通过配置 Elastic Defend 集成策略来进一步自定义这些设置。 帮助指南
  • 我们建议选择“完整 EDR(端点检测和响应)”作为配置设置,该设置提供“所有事件;所有预防措施”
  • 在“新的代理策略名称”中输入代理策略的名称。如果已存在其他代理策略,您可以单击“现有主机”选项卡并选择现有的策略。有关 Elastic Agent 配置设置的更多详细信息,请参阅帮助指南
  • 单击“保存并继续”。
  • 要完成集成,请选择“将 Elastic Agent 添加到您的主机”并继续下一节以在您的主机上安装 Elastic Agent。有关 Elastic Defend 的更多详细信息,请参阅帮助指南

规则查询

编辑
process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event") and
  (
   /* disable FW */
   (
     (process.name == "ufw" and process.args == "disable") or
     (process.name == "iptables" and process.args in ("-F", "--flush", "-X", "--delete-chain") and process.args_count == 2) or
     (process.name in ("iptables", "ip6tables") and process.parent.args == "force-stop")
   ) or

   /* stop FW service */
   (
     ((process.name == "service" and process.args == "stop") or
       (process.name == "chkconfig" and process.args == "off") or
       (process.name == "systemctl" and process.args in ("disable", "stop", "kill"))) and
    process.args in ("firewalld", "ip6tables", "iptables", "firewalld.service", "ip6tables.service", "iptables.service")
    )
  )

框架: MITRE ATT&CKTM