收集 AIDE (進階入侵偵測環境) 記錄

支援的國家/地區:

本文說明如何使用 Bindplane,將 AIDE (Advanced Intrusion Detection Environment) 記錄檔擷取至 Google Security Operations。AIDE 是檔案完整性監控工具,可偵測 Linux/Unix 系統上的檔案變更。

事前準備

請確認您已完成下列事前準備事項:

  • Google SecOps 執行個體
  • 執行 systemd 的 Linux 主機,以及 AIDE 0.18 以上版本 (支援 JSON 格式)
  • 如果透過 Proxy 執行,請確保防火牆通訊埠已根據 Bindplane 代理程式需求開啟
  • AIDE 設定檔的特殊存取權

取得 Google SecOps 擷取驗證檔案

  1. 登入 Google SecOps 控制台。
  2. 依序前往「SIEM 設定」>「收集代理程式」
  3. 下載擷取驗證檔案。將檔案安全地儲存在要安裝 Bindplane 的系統上。

取得 Google SecOps 客戶 ID

  1. 登入 Google SecOps 控制台。
  2. 依序前往「SIEM 設定」>「設定檔」
  3. 複製並儲存「機構詳細資料」專區中的客戶 ID

安裝 Bindplane 代理程式

請按照下列操作說明,在 Windows 或 Linux 作業系統上安裝 Bindplane 代理程式。

Linux 安裝

  1. 開啟具備根層級或 sudo 權限的終端機。
  2. 執行下列指令:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    

其他安裝資源

設定 Bindplane 代理程式,擷取系統記錄檔並傳送至 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: 'AIDE'
        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
    

在 AIDE 上設定 Syslog 轉送

  1. 開啟 AIDE 設定檔:

    sudo vi /etc/aide/aide.conf
    
  2. 前往報表部分。

  3. 新增下列設定:

    • report_level:輸入 list_entries
    • report_format:輸入 json (適用於 AIDE 0.18 以上版本) 或 plain
    • report_url:輸入 syslog:authpriv

      • 設定範例:
      report_level=list_entries
      report_format=json
      report_url=syslog:authpriv
      
  4. 儲存設定。

  5. 設定 rsyslog,將 AIDE 記錄轉送至 Bindplane 代理程式。開啟 rsyslog 設定:

    sudo vi /etc/rsyslog.d/aide-forward.conf
    
  6. 新增下列設定,將 authpriv 設施記錄轉送至 Bindplane 代理程式:

    authpriv.* @<BINDPLANE_AGENT_IP>:514
    
    • <BINDPLANE_AGENT_IP> 替換為 Bindplane 代理程式主機的 IP 位址。
    • 使用 @ 進行 UDP 轉送,或使用 @@ 進行 TCP 轉送。
  7. 重新啟動 rsyslog:

    sudo systemctl restart rsyslog
    
  8. 如果是全新安裝,請初始化 AIDE 資料庫:

    sudo aide --init
    sudo mv /var/lib/aide/aide.db.new /var/lib/aide/aide.db
    
  9. 測試設定:

    sudo aide --check
    
  10. 使用 cron 設定自動檢查:

    sudo crontab -e
    
  11. 新增下列指令行,即可在每天凌晨 4 點 5 分執行 AIDE:

    05 4 * * * root /usr/sbin/aide --check
    

還有其他問題嗎?向社群成員和 Google SecOps 專業人員尋求答案。