收集 AIDE(高级入侵检测环境)日志
支持的平台:
Google SecOps
SIEM
本文档介绍了如何使用 Bindplane 将 AIDE(高级入侵检测环境)日志注入到 Google Security Operations。AIDE 是一款文件完整性监控工具,可检测 Linux/Unix 系统上文件的更改。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- 运行 systemd 的 Linux 主机,且 AIDE 版本为 0.18 或更高版本(支持 JSON 格式)
- 如果通过代理运行,请确保防火墙端口已根据 Bindplane 代理要求打开
- 对 AIDE 配置文件的特权访问权限
获取 Google SecOps 注入身份验证文件
- 登录 Google SecOps 控制台。
- 依次前往 SIEM 设置 > 收集代理。
- 下载注入身份验证文件。将文件安全地保存在将要安装 Bindplane 的系统上。
获取 Google SecOps 客户 ID
- 登录 Google SecOps 控制台。
- 依次前往 SIEM 设置 > 个人资料。
- 复制并保存组织详细信息部分中的客户 ID。
安装 Bindplane 代理
按照以下说明在 Windows 或 Linux 操作系统上安装 Bindplane 代理。
Linux 安装
- 打开具有 root 或 sudo 权限的终端。
运行以下命令:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
其他安装资源
- 如需了解其他安装选项,请参阅此安装指南。
配置 Bindplane 代理以注入 Syslog 并将其发送到 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- 根据基础架构的需要替换端口和 IP 地址。
- 将
<CUSTOMER_ID>替换为实际的客户 ID。 - 将
/path/to/ingestion-authentication-file.json更新为获取 Google SecOps 注入身份验证文件部分中保存身份验证文件的路径。
重启 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添加以下行,以便每天凌晨 04:05 运行 AIDE:
05 4 * * * root /usr/sbin/aide --check
需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。