收集 Micro Focus NetIQ Access Manager 日志

支持的平台:

本文档介绍了如何使用 Bindplane 将 Micro Focus NetIQ Access Manager 日志收集到 Google 安全运营团队。Micro Focus NetIQ Access Manager 是一款身份和访问管理 (IAM) 解决方案,旨在通过提供集中式身份验证、授权和单点登录 (SSO) 功能来保护应用和数据。

准备工作

  • 确保您有一个 Google Security Operations 实例。
  • 确保您使用的是 Windows 2016 或更高版本,或者使用了 systemd 的 Linux 主机。
  • 如果在代理后面运行,请确保防火墙端口处于打开状态。
  • 确保您拥有对 NetIQ Access Manager 的特权访问权限。

获取 Google SecOps 提取身份验证文件

  1. 登录 Google SecOps 控制台。
  2. 依次前往 SIEM 设置 > 收集代理
  3. 下载提取身份验证文件。将该文件安全地保存在将安装 BindPlane 的系统上。

获取 Google SecOps 客户 ID

  1. 登录 Google SecOps 控制台。
  2. 依次选择 SIEM 设置 > 配置文件
  3. 复制并保存组织详细信息部分中的客户 ID

安装 Bindplane 代理

Windows 安装

  1. 以管理员身份打开命令提示符PowerShell
  2. 运行以下命令:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    

Linux 安装

  1. 打开具有 root 或 sudo 权限的终端。
  2. 运行以下命令:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    

其他安装资源

  • 如需了解其他安装选项,请参阅此安装指南

配置 Bindplane 代理以提取 Syslog 并将其发送到 Google SecOps

  1. 访问配置文件:

    1. 找到 config.yaml 文件。通常,在 Linux 上,该目录位于 /etc/bindplane-agent/ 目录中;在 Windows 上,该目录位于安装目录中。
    2. 使用文本编辑器(例如 nanovi 或记事本)打开该文件。
  2. 按如下方式修改 config.yaml 文件:

    receivers:
        tcplog:
            # Replace the port and IP address as required
            listen_address: "0.0.0.0:5252"
    
    exporters:
        chronicle/chronicle_w_labels:
            compression: gzip
            # Adjust the path to the credentials file you downloaded in Step 1
            creds: '/path/to/ingestion-authentication-file.json'
            # Replace with your actual customer ID from Step 2
            customer_id: <customer_id>
            endpoint: malachiteingestion-pa.googleapis.com
            # Add optional ingestion labels for better organization
            ingestion_labels:
                log_type: SYSLOG
                namespace: netiq_access
                raw_log_field: body
    
    service:
        pipelines:
            logs/source0__chronicle_w_labels-0:
                receivers:
                    - tcplog
                exporters:
                    - chronicle/chronicle_w_labels
    
  3. 根据基础架构中的需要替换端口和 IP 地址。

  4. <customer_id> 替换为实际的客户 ID。

  5. 获取 Google SecOps 提取身份验证文件部分,将 /path/to/ingestion-authentication-file.json 更新为身份验证文件的保存路径。

重启 Bindplane 代理以应用更改

  • 如需在 Linux 中重启 Bindplane 代理,请运行以下命令:

    sudo systemctl restart bindplane-agent
    
  • 如需在 Windows 中重启 Bindplane 代理,您可以使用服务控制台,也可以输入以下命令:

    net stop BindPlaneAgent && net start BindPlaneAgent
    

在 NetIQ Access Manager 中配置 Identity Server 审核事件

  1. 登录 NetIQ 管理控制台。
  2. 依次选择设备 > 身份服务器 > 服务器 > 修改 > 审核和日志记录
  3. 对于审核日志记录,请选择已启用
  4. 如要审核所有事件,请选择全选
  5. 依次点击应用 > 确定
  6. 依次点击服务器 > 更新服务器

在 NetIQ Access Manager 中配置 Access Gateway 审核事件

  1. 登录 NetIQ 管理控制台。
  2. 依次选择设备 > 访问网关 > 修改 > 审核
  3. 点击全选
  4. 依次点击确定 > 确定
  5. 访问网关页面上,点击更新

在 NetIQ Access Manager 中配置日志记录服务器

  1. 登录 NetIQ 管理控制台。
  2. 点击审核
  3. 请指定以下详细信息:

    • 使用 syslog 审核消息:选择此选项可将审核事件发送到审核服务器。
    • 在审核服务器发生故障时停止服务:留空。
    • 服务器监听地址:输入 Bindplane IP 地址。
    • 端口:指定用于连接到 Bindplane 的 syslog 端口。
    • 格式:选择 CSV
    • 管理控制台审核事件:选择全部
  4. 如果选择了 syslog 进行审核,请执行以下操作:

    1. nam.conf 中,将 SYSLOG_DAEMON 值更改为 rsyslog。这会将默认的 syslog 守护程序更改为 rsyslog
    2. 如需修改 Auditlogging.cfg 文件并将 SERVERIPSERVERPORT 宏都设为空,请运行以下命令:

      LOGDEST=syslog
      FORMAT=JSON
      SERVERIP=
      SERVERPORT=
      
  5. 如需配置 UDP,请运行以下命令:

      #$ModLoad imtcp # load TCP listener
      $InputTCPServerRun 1290
      $template ForwardFormat,"<%PRI%>%TIMESTAMP:::date-rfc3164% %HOSTNAME% %syslogtag:1:32%%msg:::sp-if-no-1st-sp%%msg%\n"
      $ModLoad imudp
      local0.* @FORWARDERIP:PORT_NUMBER;ForwardFormat
    
  6. 重启 rsyslog 服务。

变化

2024-12-12

  • 新创建的解析器。

需要更多帮助?向社区成员和 Google SecOps 专业人士寻求解答。