收集 Entrust nShield HSM 审核日志
支持的平台:
Google SecOps
SIEM
本文档介绍了如何使用 Bindplane 将 Entrust nShield HSM 审核日志注入到 Google Security Operations。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- 搭载
systemd的 Windows 2016 或更高版本或 Linux 主机 - 如果通过代理运行,请确保防火墙端口已根据 Bindplane 代理要求打开
- 对 Entrust nShield HSM 管理控制台的特权访问权限
- 已初始化且具有审核日志记录功能的安全世界
获取 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 安装
- 打开具有 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: # nShield HSM only supports UDP for audit logs 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: YOUR_CUSTOMER_ID endpoint: malachiteingestion-pa.googleapis.com # Use ENTRUST_HSM as the log type log_type: 'ENTRUST_HSM' 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如需在 Windows 中重启 Bindplane 代理,您可以使用服务控制台,也可以输入以下命令:
net stop BindPlaneAgent && net start BindPlaneAgent
在 Entrust nShield HSM 上配置 Syslog 转发
配置方法取决于您的 nShield HSM 部署模型。必须在创建安全世界时或在将 HSM 纳入现有安全世界时启用审核日志记录。
方法 1:使用 config-auditlogging 实用程序进行配置(推荐)
在安装了 Security World 软件的客户端计算机上,运行以下命令:
config-auditlogging --server <BINDPLANE_IP> --port 514 --enable-syslog- 将
<BINDPLANE_IP>替换为 Bindplane 代理主机 IP 地址。
配置更改会写入到 hardserver 配置文件。
- 将
重启 hardserver 以应用更改:
- Linux:
/opt/nfast/sbin/init.d-ncipher restart - Windows:
net stop "nfast server" && net start "nfast server"
- Linux:
方法 2:通过 hardserver 配置文件进行配置
- 修改 hardserver 配置文件:
- Linux:
/opt/nfast/kmdata/config/config - Windows:
%NFAST_KMDATA%\config\config
- Linux:
在配置文件中添加或修改以下条目:
auditlog_addr=<BINDPLANE_IP> auditlog_port=514- 将
<BINDPLANE_IP>替换为 Bindplane 代理主机 IP 地址。
- 将
保存配置文件。
重启 hardserver 以应用更改:
- Linux:
/opt/nfast/sbin/init.d-ncipher restart - Windows:
net stop "nfast server" && net start "nfast server"
- Linux:
选项 3:配置网络连接的 HSM (nShield Connect)
对于联网 HSM,您可以远程推送配置:
- 确保在 RFS(远程文件系统)上启用了配置推送。
复制 HSM 配置文件:
cp /opt/nfast/kmdata/hsm-ESN/config/config /opt/nfast/kmdata/hsm-ESN/config/config.new修改
config.new以添加审核日志配置:[audit_logging] auditlog_addr=<BINDPLANE_IP> auditlog_port=514将配置推送到 HSM:
cfg-pushnethsm --address=<HSM_IP> /opt/nfast/kmdata/hsm-ESN/config/config.new- 将
<HSM_IP>替换为 nShield Connect HSM 的 IP 地址。
- 将
需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。