收集 Zix Email Encryption 日志

支持:

本文档介绍了如何使用 Bindplane 代理将 Zix Email Encryption 日志注入 Google Security Operations。

Zix Email Encryption(现为 OpenText ZixEncrypt)是一个电子邮件加密和 DLP 平台,用于确保电子邮件通信安全和合规性。它会在 ZixGateway 设备上生成 SMTP 事务日志和加密事件日志。

准备工作

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

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 Zix Email Encryption 设备之间的网络连接
  • 如果通过代理运行,请确保防火墙端口根据 Bindplane 代理要求处于开放状态
  • 对 Zix Email Encryption 设备 (ZixGateway) 具有管理员权限的特权访问权限
  • 对 Zix Email Encryption 日志文件(SMTP 事务日志、加密事件日志)的访问权限

获取 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
    
  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
    

    该服务应显示为活跃 (running)

其他安装资源

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

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

找到配置文件

  • Linux

    sudo nano /etc/bindplane-agent/config.yaml
    
  • Windows

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

修改配置文件

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

    receivers:
        filelog:
            include:
                - /var/log/zix/*.log
                - /opt/zix/logs/*.log
            start_at: beginning
    
    exporters:
        chronicle/zix_email:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: ZIX_EMAIL_ENCRYPTION
            raw_log_field: body
            ingestion_labels:
                env: production
    
    service:
        pipelines:
            logs/zix_to_chronicle:
                receivers:
                    - filelog
                exporters:
                    - chronicle/zix_email
    

配置参数

替换以下占位符:

  • 接收器配置

    • filelog:用于从磁盘收集日志文件的接收器类型
    • include:要监控的文件路径或 glob 模式的列表:
      • Linux/var/log/zix/*.log/opt/zix/logs/*.log
      • WindowsC:\Program Files\Zix\logs\*.log
      • 调整路径以匹配您的 ZixGateway 日志文件位置
    • start_at:设置为 beginning 可从头开始读取现有日志文件,或设置为 end 可仅读取新条目
  • 导出器配置

    • zix_email:导出器的描述性名称
    • creds_file_path:注入身份验证文件的完整路径:
      • Linux: /etc/bindplane-agent/ingestion-auth.json
      • Windows: C:\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
      • 如需查看完整列表,请参阅区域级端点
    • ZIX_EMAIL_ENCRYPTION:日志类型,与 Chronicle 中显示的内容完全一致
    • ingestion_labels:YAML 格式的可选标签(例如 env: production
  • 流水线配置

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

保存配置文件

  • 修改后,保存文件:
    • Linux:按 Ctrl+O,然后按 Enter,再按 Ctrl+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 Collector
      3. 右键点击并选择重启
      4. 验证服务正在运行:

          sc query observiq-otel-collector
        
      5. 检查日志中的错误:

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

配置 Zix Email Encryption 日志收集

Bindplane 代理直接从 ZixGateway 设备文件系统收集日志文件。

验证日志文件位置

  1. 登录 ZixGateway 管理控制台。
  2. 前往监控 > 日志
  3. 验证日志文件目录:

    • Linux/var/log/zix//opt/zix/logs/
    • WindowsC:\Program Files\Zix\logs\
  4. 确认 SMTP 事务日志和加密事件日志正在写入预期位置。

  5. 如果日志目录与默认值不同,请更新 Bindplane 代理 config.yaml 中的 include 路径。

UDM 映射表

日志字段 UDM 映射 逻辑
intermediary intermediary 从 intermediary 合并
relay_host intermediary.hostname 直接从 relay_host 复制的值
relay_ip intermediary.ip 从 relay_ip 合并
relay_port intermediary.port 从 relay_port 转换为整数的值
message_details metadata.description 直接从 smtp、smtpd、cleanup 或 error 块中的 message_details 复制的值
principal_hostname, sender_email metadata.event_type 如果 principal_hostname 和 sender_email 不为空,则设置为“EMAIL_TRANSACTION”;否则,如果 principal_hostname 和 (target_host 或 target_ip) 不为空,则设置为“NETWORK_CONNECTION”;否则,如果 principal_hostname 不为空且 (target_host 或 target_ip) 为空,则设置为“STATUS_UPDATE”;否则,设置为“GENERIC_EVENT”
metadata.product_name 设置为“Zix Email Encryption”
metadata.vendor_name 设置为“Zix”
message network.application_protocol 如果 message 与 smtp 或 smtpd 匹配,则设置为“SMTP”
sender_email network.email.from 如果 sender_email 与电子邮件正则表达式匹配,则直接复制值
subject network.email.subject 从 subject 合并
recipient_email network.email.to 如果与电子邮件正则表达式匹配,则从 recipient_email 合并
data_size network.received_bytes 从 data_size 转换为 uinteger 的值
tls_cipher network.tls.cipher 直接从 tls_cipher 复制的值
cert_data network.tls.client.certificate.issuer 直接从 cert_data 复制的值
daemon principal.application 直接从 daemon 复制的值
principal_hostname principal.hostname 直接从 principal_hostname 复制的值
file principal.process.file.full_path 直接从 file 复制的值
pid principal.process.pid 直接从 pid 复制的值
principal.resource.type 如果守护程序是 cleanup,则设置为“CLEANUP_MESSAGE_ID”
sender_email principal.user.user_display_name 如果 sender_email 与电子邮件正则表达式不匹配,则直接复制值
user_id principal.user.userid 如果 user_id 不为空,则取 user_id 的值;否则,取 else 块中 user_id 的值
security_result security_result 从 security_result 合并
security_action security_result.action 从 security_action 合并
failure_reason security_result.description 直接从 failure_reason 复制的值
security_summary security_result.summary 直接从 security_summary 复制的值
file target.file.full_path 直接从 file 复制的值
target_host target.hostname 直接从 target_host 复制的值
target_ip target.ip 从 target_ip 合并
target_port target.port 从 target_port 转换为整数的值
message_id target.resource.name 直接从 message_id 复制的值
recipient_email target.user.user_display_name 如果 recipient_email 与电子邮件正则表达式不匹配,则直接复制值

更新日志

查看此解析器的更新日志

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