收集 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 設備之間的網路連線
  • 如果透過 Proxy 執行,請確保防火牆通訊埠已根據 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
    

    服務應顯示為「RUNNING」

Linux 安裝

  1. 開啟具有根層級或 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 代理程式,擷取系統記錄檔並傳送至 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
      • 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
      • 如需完整清單,請參閱「區域端點
    • ZIX_EMAIL_ENCRYPTION:記錄類型,與 Chronicle 中顯示的完全相同
    • ingestion_labels:YAML 格式的選用標籤 (例如 env: production)
  • 管道設定:

    • zix_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 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 對應 邏輯
中介 中介 從中介裝置合併
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」
訊息 network.application_protocol 如果郵件符合 SMTP 或 smtpd,請設為「SMTP」
sender_email network.email.from 如果 sender_email 符合電子郵件規則運算式,系統會直接複製值
主旨 network.email.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 複製的值
檔案 principal.process.file.full_path 直接從檔案複製值
pid principal.process.pid 直接從 pid 複製值
principal.resource.type 如果 Daemon 是清理作業,請設為「CLEANUP_MESSAGE_ID」
sender_email principal.user.user_display_name 如果 sender_email 不符合電子郵件規則運算式,系統會直接複製值
user_id principal.user.userid 如果 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 複製的值
檔案 target.file.full_path 直接從檔案複製值
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 專業人員尋求答案。