收集 Centripetal Networks IOC 日志

解析器版本:3.0

支持的平台:

本文档介绍了如何使用 Bindplane 代理将 Centripetal Networks IOC 日志注入到 Google Security Operations。

Centripetal Networks RuleGATE 是一种网络安全网关,可使用威胁情报实时过滤网络流量,阻止与已知恶意 IP 地址的连接。它会生成有关允许和阻止的连接的日志,其中包含失陷指标 (IOC) 上下文。RuleGATE 支持以 CEF(通用事件格式)和 JSON 格式使用 syslog 发送日志。

准备工作

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

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 Centripetal Networks RuleGATE 之间的网络连接
  • 如果在代理后面运行,请确保防火墙端口已根据 Bindplane 代理要求打开
  • 以管理员权限对 Centripetal Networks RuleGATE 管理界面进行特权访问

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

  1. 登录 Google SecOps 控制台。
  2. 依次前往 SIEM 设置 > 收集代理
  3. 下载数据注入身份验证文件
  4. 将文件安全地保存在将要安装 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
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sc query observiq-otel-collector
    

    该服务应显示为 正在运行

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
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sudo systemctl status observiq-otel-collector
    

    该服务应显示为有效(正在运行)

其他安装资源

如需了解其他安装选项和问题排查信息,请参阅 Bindplane 代理安装指南

配置 Bindplane 代理以注入 syslog 并将其发送到 Google SecOps

找到配置文件

  • Linux

    sudo nano /opt/observiq-otel-collector/config.yaml
    
  • Windows

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

修改配置文件

  • config.yaml 的全部内容替换为以下配置:

    receivers:
        udplog:
            listen_address: "0.0.0.0:514"
    
    exporters:
        chronicle/centripetal_ioc:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: CENTRIPETAL_IOC
            raw_log_field: body
            ingestion_labels:
                env: production
    
    service:
        pipelines:
            logs/centripetal_to_chronicle:
                receivers:
                    - udplog
                exporters:
                    - chronicle/centripetal_ioc
    

配置参数

替换以下占位符:

  • 接收器配置

    • udplog:基于协议的接收器类型:
      • udplog(适用于 UDP syslog)
      • tcplog(适用于 TCP syslog)
    • 0.0.0.0:要监听的 IP 地址:
      • 0.0.0.0 侦听所有接口(推荐)
      • 在某个接口上监听的特定 IP 地址
    • 514:要监听的端口号(例如 51415146514
  • 导出器配置

    • centripetal_ioc:导出器的描述性名称
    • creds_file_path:提取身份验证文件的完整路径:
      • Linux/etc/bindplane-agent/ingestion-auth.json
      • WindowsC:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • <customer_id>:上一步中的客户 ID
    • endpoint:区域端点网址:
      • 美国malachiteingestion-pa.googleapis.com
      • 欧洲europe-malachiteingestion-pa.googleapis.com
      • 亚洲asia-southeast1-malachiteingestion-pa.googleapis.com
      • 如需查看完整列表,请参阅区域级端点
    • CENTRIPETAL_IOC:日志类型,与在 Chronicle 中显示的完全一致
    • ingestion_labels:YAML 格式的可选标签(例如 env: production
  • 流水线配置

    • centripetal_to_chronicle:流水线的描述性名称

保存配置文件

  • 修改后,保存文件:
    • Linux:依次按 Ctrl+OEnterCtrl+X
    • Windows:依次点击文件 > 保存

重启 Bindplane 代理以应用更改

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

    sudo systemctl restart observiq-otel-collector
    
    1. 验证服务是否正在运行:

      sudo systemctl status observiq-otel-collector
      
    2. 检查日志是否存在错误:

      sudo journalctl -u observiq-otel-collector -f
      
  • 如需在 Windows 中重启 Bindplane 代理,请选择以下选项之一:

    • 以管理员身份运行命令提示符或 PowerShell:

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • 服务控制台:

      1. Win+R,输入 services.msc,然后按 Enter 键。
      2. 找到 observIQ OpenTelemetry 收集器
      3. 右键点击并选择重新启动
      4. 验证服务是否正在运行:

        sc query observiq-otel-collector
        
      5. 检查日志是否存在错误:

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

配置 Centripetal RuleGATE syslog 转发

  1. 使用管理员凭证登录 RuleGATE 管理界面
  2. 前往日志或报告配置部分。
  3. 使用以下参数配置 syslog 转发:
    • Syslog 服务器地址:输入 Bindplane 代理主机(例如 192.168.1.100)的 IP 地址。
    • 端口:输入 514(必须与 Bindplane 代理接收器端口匹配)。
    • 协议:选择 UDP(必须与 Bindplane 代理接收器类型一致)。
    • 格式:根据您的部署情况,选择 CEF(通用事件格式)或 JSON
  4. 选择要转发的日志类别,包括 IOC 事件、允许的连接和被阻止的连接。
  5. 点击保存以应用配置。
  6. 通过检查 Bindplane 代理日志,验证是否正在接收 syslog 消息。

UDM 映射表

日志字段 UDM 映射 逻辑
metadata.event_type 设置为“NETWORK_CONNECTION”
方向 network.direction 如果 direction == "in",则设置为“INBOUND”,否则设置为“OUTBOUND”
http_method network.http.method 直接映射
http_user_agent network.http.user_agent 直接映射
proto network.ip_protocol 映射:“1”→ICMP,“6”→TCP,“17”→UDP
rx_bytes network.received_bytes 转换为无符号整数
srcip principal.ip 直接映射
srcport principal.port 转换为整数
http_host、http_url principal.url 串联
cti_provider security_result.about.application 直接映射
about_host security_result.about.hostname 直接映射
cti_trigger security_result.about.ip 使用 grok 提取
cti_type security_result.about.resource.id 直接映射
cti_feed security_result.about.resource.name 直接映射
操作 security_result.action “logged”→ALLOW,“blocked”→BLOCK
signature security_result.description 直接映射
和程度上减少 security_result.severity 3→低,2→中,1→高
分类信息 security_result.summary 直接映射
dstip target.ip 直接映射
dstport target.port 转换为整数
不适用 metadata.product_name 硬编码为“Centripetal RuleGATE”
不适用 metadata.vendor_name 硬编码为“向心”

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