收集 Endpoint Protector DLP 日志

支持的语言:

本文档介绍了如何使用 Bindplane 将 Netwrix Endpoint Protector DLP(数据丢失防护)日志注入到 Google Security Operations。解析器会从 syslog 消息中提取字段,并利用 grok 模式来识别关键信息。然后,它会将这些提取的字段映射到统一数据模型 (UDM),处理各种数据类型,并使用供应商和产品信息等元数据丰富输出。解析器还会执行多项数据转换,包括字符串操作和根据操作系统及其他条件有条件地合并字段。

准备工作

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

  • Google SecOps 实例
  • Windows 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • 如果在代理后运行,防火墙端口处于开放状态
  • 对 Netwrix Endpoint Protector 的特权访问权限

获取 Google SecOps 注入身份验证文件

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

获取 Google SecOps 客户 ID

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

安装 Bindplane 代理

按照以下说明在 Windows 或 Linux 操作系统上安装 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. 访问配置文件:
    • 找到 config.yaml 文件。通常,它位于 Linux 上的 /etc/bindplane-agent/ 目录中或 Windows 上的安装目录中。
    • 使用文本编辑器(例如 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
            ingestion_labels:
                log_type: 'ENDPOINT_PROTECTOR_DLP'
                raw_log_field: body
    
    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
    

在 Netwrix Endpoint Protector 上配置 Syslog

  1. 登录 Endpoint Protector 网页界面。
  2. 依次前往设备 > SIEM 集成
  3. 点击 Add New(新增)。
  4. 提供以下配置详细信息:
    • SIEM 状态:切换开关以启用 SIEM 服务器。
    • 停用日志记录:切换开关以启用日志记录。
    • 服务器名称:输入一个具有唯一性的有意义的服务器名称。
    • 服务器说明:为此集成添加说明。
    • 服务器 IP 或 DNS:输入 Bindplane 代理 IP 地址。
    • 服务器协议:选择 UDP
    • 服务器端口:输入 Bindplane 代理端口号(例如,UDP 为 514)。
    • 排除标题:切换开关以启用日志标题。
    • 日志类型:选择要发送到 SIEM 的可用日志。
  5. 点击保存

UDM 映射表

日志字段 UDM 映射 逻辑
Client Computer principal.asset.asset_id 在添加“Client Computer: ”前缀后,Client Computer 的值会分配给 principal.asset.asset_id
Client User principal.user.userid Client User 的值分配给 principal.user.userid
Content Policy security_result.rule_name Content Policy 的值分配给 security_result.rule_name
Content Policy Type security_result.rule_id Content Policy Type 的值分配给 security_result.rule_id
Destination metadata.ingestion_labels.value Destination 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“目的地”。
Destination Type metadata.ingestion_labels.value Destination Type 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“目的地类型”。
Device PID metadata.ingestion_labels.value Device PID 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“设备 PID”。
Device Serial metadata.ingestion_labels.value Device Serial 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“设备序列号”。仅当 Device Serial 不为空时才执行此操作。
Device VID metadata.ingestion_labels.value Device VID 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“设备 VID”。
File Name target.file.full_path File Name 的值分配给 target.file.full_path
File Size target.file.size File Size 的值会赋给 target.file.size 并转换为无符号整数。
IP Address principal.ip IP Address 的值分配给 principal.ip
Item Details metadata.ingestion_labels.value Item Details 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“商品详情”。
Log ID metadata.product_log_id Log ID 的值分配给 metadata.product_log_id
MAC Address principal.mac 在将所有连字符替换为英文冒号后,MAC Address 的值会分配给 principal.mac
Matched Item metadata.ingestion_labels.value Matched Item 的值会分配给 ingestion_labels 对象的 value 字段,其中 key 为“匹配的商品”。
Message security_result.summary Message 的值分配给 security_result.summary
OS principal.platform OS 的值用于确定 principal.platform 的值。如果 OS 包含“Windows”,则将 principal.platform 设置为“WINDOWS”。如果 OS 包含“Mac”,则将 principal.platform 设置为“MAC”。如果 OS 包含“Lin”,则将 principal.platform 设置为“LINUX”。
Serial Number principal.asset.hardware.serial_number Serial Number 的值分配给 principal.asset.hardware.serial_number。使用 Grok 从消息字段中提取并分配给 intermediary.hostname。使用 Grok 从消息字段中提取并分配给 metadata.description。系统日志消息中的时间戳会被解析并分配给 metadata.event_timestamp。为 metadata.event_type 分配值“SCAN_UNCATEGORIZED”。系统会为 metadata.log_type 分配值“ENDPOINT_PROTECTOR_DLP”。系统会为 metadata.product_name 分配值“ENDPOINT_PROTECTOR_DLP”。系统会为 metadata.vendor_name 分配值“ENDPOINT_PROTECTOR_DLP”。使用 Grok 从消息字段中提取并分配给 principal.hostname。使用 Grok 从消息字段中提取并分配给 principal.ip。系统会解析来自 syslog 消息的时间戳,并将其分配给顶级 timestamp 字段。

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