收集 Comodo AV 日志
支持的语言:
Google SecOps
SIEM
本文档介绍了如何使用 Bindplane 将 Comodo AV 日志注入到 Google Security Operations。解析器代码首先使用 Grok 模式和键值分隔从 Comodo AV/Endpoint 日志中提取字段。然后,它将提取的数据映射到统一数据模型 (UDM) 架构中的相应字段,从而使用标准化的安全事件信息来丰富原始日志。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- Windows 2016 或更高版本,或者具有
systemd
的 Linux 主机 - 如果在代理后运行,防火墙端口处于开放状态
- 对 Comodo IT and Security Manager 控制台的特权访问权限
获取 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: # 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 ingestion_labels: log_type: 'COMODO_AV' raw_log_field: body 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
配置 Comodo Antivirus 以发送 Syslog
- 登录 Comodo IT and Security Manager 控制台。
- 依次前往高级设置 > 常规设置 > 日志记录。
- 提供以下配置详细信息:
- 选中写入到 syslog 服务器(CEF 格式)复选框。
- 主机:输入 Bindplane 代理 IP 地址。
- 端口:输入 Bindplane 代理端口号(例如
514
表示 UDP)。
- 点击确定以保存更改。
UDM 映射表
日志字段 | UDM 映射 | 逻辑 |
---|---|---|
data3 | principal.asset.platform_software.platform_version | 表示商品版本的 data3 字段的值会映射到 principal.asset.platform_software.platform_version 。 |
data4 | principal.user.product_object_id | data4 字段的值(表示商品中用户的唯一标识符)会映射到 principal.user.product_object_id 。 |
data5 | principal.application | data5 字段的值(表示应用或事件名称)会映射到 principal.application 。 |
datetime | metadata.event_timestamp.seconds | 系统会解析表示事件时间戳的 datetime 字段,并将其纪元秒值映射到 metadata.event_timestamp.seconds 。 |
dvc | principal.ip | 表示设备 IP 地址的 dvc 字段映射到 principal.ip 。 |
dvchost | principal.hostname | 表示设备主机名的 dvchost 字段映射到 principal.hostname 。 |
filePath | target.file.full_path | 表示扫描文件的完整路径的 filePath 字段映射到 target.file.full_path 。 |
fname | target.process.parent_process.file.full_path | 表示父进程文件名的 fname 字段映射到 target.process.parent_process.file.full_path 。 |
suser | target.user.userid | 表示与事件关联的用户的 suser 字段会映射到 target.user.userid 。 |
metadata.event_type | 此字段是根据是否存在 filePath 得出的。如果 filePath 不为空,则设置为 SCAN_FILE ,否则设置为 SCAN_HOST 。 |
|
metadata.log_type | 此字段静态设置为 COMODO_AV 。 |
|
metadata.vendor_name | 此字段静态设置为 COMODO 。 |
|
metadata.product_name | 此字段静态设置为 COMODO_AV 。 |
需要更多帮助?从社区成员和 Google SecOps 专业人士那里获得解答。