收集 AIDE (進階入侵偵測環境) 記錄
支援的國家/地區:
Google SecOps
SIEM
本文說明如何使用 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 擷取驗證檔案
- 登入 Google SecOps 控制台。
- 依序前往「SIEM 設定」>「收集代理程式」。
- 下載擷取驗證檔案。將檔案安全地儲存在要安裝 Bindplane 的系統上。
取得 Google SecOps 客戶 ID
- 登入 Google SecOps 控制台。
- 依序前往「SIEM 設定」>「設定檔」。
- 複製並儲存「機構詳細資料」專區中的客戶 ID。
安裝 Bindplane 代理程式
請按照下列操作說明,在 Windows 或 Linux 作業系統上安裝 Bindplane 代理程式。
Linux 安裝
- 開啟具備根層級或 sudo 權限的終端機。
執行下列指令:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
其他安裝資源
- 如需其他安裝選項,請參閱這份安裝指南。
設定 Bindplane 代理程式,擷取系統記錄檔並傳送至 Google SecOps
存取設定檔:
- 找出
config.yaml檔案。通常位於 Linux 的/etc/bindplane-agent/目錄,或 Windows 的安裝目錄。 - 使用文字編輯器 (例如
nano、vi或記事本) 開啟檔案。
- 找出
按照下列方式編輯
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
重新啟動 Bindplane 代理程式,以套用變更
如要在 Linux 中重新啟動 Bindplane 代理程式,請執行下列指令:
sudo systemctl restart bindplane-agent
在 AIDE 上設定 Syslog 轉送
開啟 AIDE 設定檔:
sudo vi /etc/aide/aide.conf前往報表部分。
新增下列設定:
- 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
- report_level:輸入
儲存設定。
設定 rsyslog,將 AIDE 記錄轉送至 Bindplane 代理程式。開啟 rsyslog 設定:
sudo vi /etc/rsyslog.d/aide-forward.conf新增下列設定,將
authpriv設施記錄轉送至 Bindplane 代理程式:authpriv.* @<BINDPLANE_AGENT_IP>:514- 將
<BINDPLANE_AGENT_IP>替換為 Bindplane 代理程式主機的 IP 位址。 - 使用
@進行 UDP 轉送,或使用@@進行 TCP 轉送。
- 將
重新啟動 rsyslog:
sudo systemctl restart rsyslog如果是全新安裝,請初始化 AIDE 資料庫:
sudo aide --init sudo mv /var/lib/aide/aide.db.new /var/lib/aide/aide.db測試設定:
sudo aide --check使用 cron 設定自動檢查:
sudo crontab -e新增下列指令行,即可在每天凌晨 4 點 5 分執行 AIDE:
05 4 * * * root /usr/sbin/aide --check
還有其他問題嗎?向社群成員和 Google SecOps 專業人員尋求答案。