收集 Active Countermeasures AI-Hunter 記錄
支援的國家/地區:
Google SecOps
SIEM
本文說明如何使用 Bindplane,將 Active Countermeasures AI-Hunter 記錄檔擷取至 Google Security Operations。剖析器會從系統記錄訊息中擷取安全警示資料。這項服務會剖析 IP 位址、目前和先前的評分,以及影響評分的各種因素等欄位,然後將這些欄位對應至 UDM,並以代表擷取資料點的標籤來擴充主體。
事前準備
請確認您已完成下列事前準備事項:
- Google SecOps 執行個體
- 搭載
systemd的 Windows 2016 以上版本或 Linux 主機 - 如果透過 Proxy 執行,請確保防火牆通訊埠已根據 Bindplane 代理程式需求開啟
- 有權存取 Active Countermeasures AI-Hunter 伺服器,可編輯設定檔
取得 Google SecOps 擷取驗證檔案
- 登入 Google SecOps 控制台。
- 依序前往「SIEM 設定」>「收集代理程式」。
- 下載擷取驗證檔案。將檔案安全地儲存在要安裝 Bindplane 的系統上。
取得 Google SecOps 客戶 ID
- 登入 Google SecOps 控制台。
- 依序前往「SIEM 設定」>「設定檔」。
- 複製並儲存「機構詳細資料」專區中的客戶 ID。
安裝 Bindplane 代理程式
請按照下列操作說明,在 Windows 或 Linux 作業系統上安裝 Bindplane 代理程式。
Windows 安裝
- 以管理員身分開啟「命令提示字元」或「PowerShell」。
執行下列指令:
msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
安裝 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: 'AI_HUNTER' raw_log_field: body service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - udplog exporters: - chronicle/chronicle_w_labels
重新啟動 Bindplane 代理程式,以套用變更
如要在 Linux 中重新啟動 Bindplane 代理程式,請執行下列指令:
sudo systemctl restart bindplane-agent如要在 Windows 中重新啟動 Bindplane 代理程式,可以使用「服務」控制台,也可以輸入下列指令:
net stop BindPlaneAgent && net start BindPlaneAgent
在 Active Countermeasures AI-Hunter 中設定 Syslog 轉送
- 透過 SSH 登入 AI-Hunter 伺服器,並取得具備權限的存取權。
備份現有的設定檔:
sudo cp /etc/AI-Hunter/config.yaml /etc/AI-Hunter/config.yaml.backup編輯設定檔:
sudo nano /etc/AI-Hunter/config.yaml找出「Alert:」部分和巢狀的「Syslog:」部分。請提供下列設定詳細資料:
Alert: Syslog: Threshold: 20 Protocol: "udp" Address: "bindplane_host:514" Tag: " AC-Hunter "- 門檻:輸入觸發快訊的最低威脅分數 (例如
20)。如果系統的分數達到或超過這個值,就會產生系統記錄快訊。 - 通訊協定:選取
udp或tcp,與 Bindplane 設定相符。使用""(空字串) 寫入主機的/dev/log,以進行 rsyslog 轉送。 - 地址:輸入 Bindplane 代理程式 IP 位址和通訊埠 (例如
10.1.2.3:514)。 - 標記:輸入選填的記錄識別標記 (例如
AC-Hunter)。供應商建議在結尾引號前加入尾端空格。
- 門檻:輸入觸發快訊的最低威脅分數 (例如
儲存設定檔並結束編輯器。
重新啟動 AI-Hunter,即可套用變更:
hunt up -d --force-recreate
還有其他問題嗎?向社群成員和 Google SecOps 專業人員尋求答案。