收集 Imperva Data Risk Analytics (DRA) 日志

支持的平台:

本文档介绍了如何使用 Bindplane 将 Imperva Data Risk Analytics (DRA) 日志注入到 Google Security Operations。解析器从数据风险分析 syslog 格式的日志中提取字段。它使用 grok 和 kv 解析日志消息,然后将这些值映射到统一数据模型 (UDM)。Imperva DRA 有助于从数十亿条审核事件中发现可疑数据活动,并确定关键事件的优先级。

准备工作

请确保满足以下前提条件:

  • Google SecOps 实例
  • Windows 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • 如果通过代理运行,请确保防火墙端口已根据 Bindplane 代理要求打开
  • 对 Imperva DRA 管理控制台的特权访问权限

获取 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:
      udplog:
        # Replace the port and IP address as required
        listen_address: "0.0.0.0:514"
    
    exporters:
      chronicle/chronicle_w_labels:
        compression: gzip
        # Adjust the path to the credentials file you downloaded in Step 1
        creds_file_path: '/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
        log_type: 'IMPERVA_DRA'
        raw_log_field: body
        ingestion_labels:
    
    service:
      pipelines:
        logs/source0__chronicle_w_labels-0:
          receivers:
            - udplog
          exporters:
            - chronicle/chronicle_w_labels
    
    • 根据基础架构的需要替换端口和 IP 地址。
    • <customer_id> 替换为实际的客户 ID。
    • /path/to/ingestion-authentication-file.json 更新为获取 Google SecOps 提取身份验证文件部分中保存身份验证文件的路径。

重启 Bindplane 代理以应用更改

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

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

    net stop BindPlaneAgent && net start BindPlaneAgent
    

在 Imperva DRA 上配置 Syslog 转发

  1. 登录 Imperva DRA 管理控制台
  2. 依次前往配置 > SIEM 集成
  3. Syslog 服务器部分中,提供以下配置详细信息:
    • 服务器 IP:输入 BindPlane 代理 IP 地址。
    • 端口:输入 BindPlane 代理端口号(默认值为 514)。
    • 协议:根据您的 BindPlane Agent 配置,选择 UDPTCP
    • 功能:选择适当的 syslog 功能(例如 LOCAL0)。
  4. 点击发送测试 Syslog 消息以验证连接。
  5. 要发送的事件部分中,配置以下内容:
    • 事件类别:根据需要选择入侵检测和/或风险降低
    • 通知类型:选择事件打开/关闭/重新打开操作及其严重程度。
    • 消息格式:选择 JSON 作为结构化数据格式,或选择 Raw 作为基本 syslog 格式。
  6. 配置严重程度阈值,以确定应转发哪些严重程度的日志。
  7. 保存配置。

需要更多帮助?从社区成员和 Google SecOps 专业人士那里获得解答。