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

剖析器版本:1.0

支援的國家/地區:

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

事前準備

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

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

取得 Google SecOps 擷取驗證檔案

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

取得 Google SecOps 客戶 ID

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

安裝 Bindplane 代理程式

按照下列操作說明,在 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. 存取設定檔:

    • 找出 config.yaml 檔案。通常位於 Linux 的 /etc/bindplane-agent/ 目錄中。
    • 使用文字編輯器 (例如 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 更新為您在步驟 1 中儲存驗證檔案的檔案路徑。

重新啟動 Bindplane 代理程式,以套用變更

  • 如要在 Linux 中重新啟動 Bindplane 代理程式,請執行下列指令:

    sudo systemctl restart observiq-otel-collector
    

在 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

    設定範例:

    ```ini
    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
    

UDM 對應表

記錄欄位 UDM 對應 邏輯
added_label principal.asset.attribute.labels 已合併
changed_label principal.asset.attribute.labels 已合併
old_acl_label principal.asset.attribute.labels 已合併
old_md5_label principal.asset.attribute.labels 已合併
old_perms_label principal.asset.attribute.labels 已合併
old_sha256_label principal.asset.attribute.labels 已合併
old_ts_label principal.asset.attribute.labels 已合併
removed_label principal.asset.attribute.labels 已合併
total_label principal.asset.attribute.labels 已合併
file_path principal.file.full_path 直接對應
path principal.file.full_path 直接對應
old_size principal.file.size 直接對應
host principal.hostname 直接對應
sr security_result 已合併
new_acl_label target.asset.attribute.labels 已合併
new_md5_label target.asset.attribute.labels 已合併
new_perms_label target.asset.attribute.labels 已合併
new_sha256_label target.asset.attribute.labels 已合併
new_ts_label target.asset.attribute.labels 已合併
path target.file.full_path 直接對應
new_size target.file.size 直接對應
不適用 metadata.event_type 常數:GENERIC_EVENT
不適用 metadata.product_name 常數:AIDE
不適用 metadata.vendor_name 常數:AIDE
不適用 principal.application 常數:aide
不適用 principal.file.size 常數:sizedata
不適用 target.file.size 常數:sizedata_target
total_files", "added_files", "removed_files", "changed_files", "old_timestamp", "old_perms", "old_sha256", "old_md5", and "old_acl principal.asset.attribute.labels 從變更記錄對應
new_timestamp", "new_perms", "new_sha256", "new_md5", and "new_acl target.asset.attribute.labels 從變更記錄對應

變更記錄

查看這個剖析器的變更記錄

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