收集 LinkShadow NDR 日志
本文档介绍了如何使用 Bindplane 代理将 LinkShadow NDR 日志注入到 Google Security Operations。
LinkShadow NDR 是一款依托 AI 技术的网络检测和响应平台,可分析网络流量以检测威胁。它会针对异常行为、横向移动和数据渗漏生成提醒。LinkShadow NDR 以 CEF(通用事件格式)输出日志,其中包含设备供应商、事件类别 ID、严重程度、来源/目标 IP 和端口、用户标识符以及威胁说明等字段。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- Windows Server 2016 或更高版本,或者具有
systemd的 Linux 主机 - Bindplane 代理与 LinkShadow NDR 之间的网络连接
- 如果在代理后面运行,请确保防火墙端口已根据 Bindplane 代理要求打开
- 对 LinkShadow NDR 管理控制台的管理员权限的特权访问权限
获取 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等待安装完成。
运行以下命令,验证安装是否成功:
sc query observiq-otel-collector该服务应显示为 正在运行。
Linux 安装
- 打开具有 root 或 sudo 权限的终端。
运行以下命令:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh等待安装完成。
运行以下命令,验证安装是否成功:
sudo systemctl status observiq-otel-collector该服务应显示为有效(正在运行)。
其他安装资源
如需了解其他安装选项和问题排查信息,请参阅 Bindplane 代理安装指南。
配置 Bindplane 代理以注入 syslog 并将其发送到 Google SecOps
找到配置文件
Linux:
sudo nano /opt/observiq-otel-collector/config.yamlWindows:
notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
修改配置文件
将
config.yaml的全部内容替换为以下配置:receivers: tcplog: listen_address: "0.0.0.0:514" exporters: chronicle/linkshadow_ndr: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<customer_id>' endpoint: malachiteingestion-pa.googleapis.com log_type: LINKSHADOW_NDR raw_log_field: body ingestion_labels: env: production service: pipelines: logs/linkshadow_to_chronicle: receivers: - tcplog exporters: - chronicle/linkshadow_ndr
配置参数
替换以下占位符:
接收器配置:
tcplog:基于协议的接收器类型:udplog(适用于 UDP syslog)tcplog(适用于 TCP syslog)
0.0.0.0:要监听的 IP 地址:0.0.0.0侦听所有接口(推荐)- 在某个接口上监听的特定 IP 地址
514:要监听的端口号(例如514、1514、6514)
导出器配置:
linkshadow_ndr:导出器的描述性名称creds_file_path:提取身份验证文件的完整路径:- Linux:
/etc/bindplane-agent/ingestion-auth.json - Windows:
C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
- Linux:
<customer_id>:上一步中的客户 IDendpoint:区域端点网址:- 美国:
malachiteingestion-pa.googleapis.com - 欧洲:
europe-malachiteingestion-pa.googleapis.com - 亚洲:
asia-southeast1-malachiteingestion-pa.googleapis.com - 如需查看完整列表,请参阅区域级端点
- 美国:
LINKSHADOW_NDR:日志类型,与在 Chronicle 中显示的完全一致ingestion_labels:YAML 格式的可选标签(例如env: production)
流水线配置:
linkshadow_to_chronicle:流水线的描述性名称
保存配置文件
- 修改后,保存文件:
- Linux:依次按
Ctrl+O、Enter和Ctrl+X - Windows:依次点击文件 > 保存
- Linux:依次按
重启 Bindplane 代理以应用更改
如需在 Linux 中重启 Bindplane 代理,请运行以下命令:
sudo systemctl restart observiq-otel-collector验证服务是否正在运行:
sudo systemctl status observiq-otel-collector检查日志是否存在错误:
sudo journalctl -u observiq-otel-collector -f
如需在 Windows 中重启 Bindplane 代理,请选择以下选项之一:
以管理员身份运行命令提示符或 PowerShell:
net stop observiq-otel-collector && net start observiq-otel-collector服务控制台:
- 按
Win+R,输入services.msc,然后按 Enter 键。 - 找到 observIQ OpenTelemetry 收集器。
- 右键点击并选择重新启动。
验证服务是否正在运行:
sc query observiq-otel-collector检查日志是否存在错误:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
- 按
配置 LinkShadow NDR syslog 转发
- 以管理员身份登录 LinkShadow NDR 管理控制台。
- 依次前往设置 > SIEM 集成。
在“syslog 转发”部分下,配置以下内容:
设置 值 Syslog 服务器 IP 输入 Bindplane 代理主机 IP 地址 Syslog 端口 输入与 Bindplane 代理接收器配置相匹配的端口(例如 514)协议 选择 TCP 或 UDP 以匹配 Bindplane 接收器类型 日志格式 选择 CEF(通用事件格式) 选择要转发的事件类别,例如:
- 网络异常值提醒
- 横向移动检测
- 数据渗漏提醒
- 用户行为分析事件
点击保存或应用以启用 syslog 转发配置。
通过检查 Bindplane 代理日志,验证是否正在接收日志。
UDM 映射表
| 日志字段 | UDM 映射 | 逻辑 |
|---|---|---|
| fileHash | about.file.full_path | 如果与哈希正则表达式不匹配,则进行设置 |
| fileHash | about.file.sha256 | 如果匹配哈希正则表达式,则重命名 |
| cn1、cn1Label、cn2、cn2Label、cs3、cs3Label、cs4、cs4Label、cs5、cs5Label、cs6、cs6Label、cat、externalId、smac | additional.fields | 合并来自 cn/cnLabel 等的键值对,将 cat/externalId 作为标签,如果 MAC 无效,则将 smac 作为标签 |
| dvc | intermediary.ip | 提取为 IP 并合并 |
| msg | metadata.description | 直接复制值 |
| src、dst、suser、duser | metadata.event_type | 如果 has_principal 和 has_target 为 true,则设置为 NETWORK_CONNECTION;如果 has_principal_user 或 has_target_user 为 true,则设置为 USER_UNCATEGORIZED;如果 has_principal 为 true,则设置为 STATUS_UPDATE;否则设置为 GENERIC_EVENT |
| device_event_class_id、event_name | metadata.product_event_type | 如果两者都存在,则串联为“[device_event_class_id] - event_name”;否则,如果存在 device_event_class_id,则为 device_event_class_id;否则为 event_name |
| device_version | metadata.product_version | 直接复制值 |
| device_product | metadata.product_name | 直接复制值 |
| device_vendor | metadata.vendor_name | 直接复制值 |
| requestMethod | network.http.method | 直接复制值 |
| src | principal.asset.ip | 提取为 IP 并合并 |
| src | principal.ip | 提取为 IP 并合并 |
| smac | principal.mac | 提取为 MAC,如果有效则合并 |
| spt | principal.port | 转换为整数 |
| suser | principal.user.userid | 直接复制值 |
| reason | security_result.description | 直接复制值 |
| 和程度上减少 | security_result.severity | 如果值为“0”,则设置为 INFORMATIONAL;如果值为“2”,则设置为 LOW;如果值为“5”,则设置为 MEDIUM;如果值为“7”,则设置为 HIGH;如果值为“10”,则设置为 CRITICAL |
| 和程度上减少 | security_result.severity_details | 直接复制值 |
| destinationDnsDomain | target.administrative_domain | 直接复制值 |
| requestClientApplication | target.application | 直接复制值 |
| dst | target.asset.ip | 解析为 JSON 数组,提取 IP 并合并 |
| fname | target.file.full_path | 直接复制值 |
| fileType | target.file.mime_type | 直接复制值 |
| dst | target.ip | 解析为 JSON 数组,提取 IP 并合并 |
| dpt | target.port | 转换为整数 |
| 请求 | target.url | 直接复制值 |
| duser | target.user.userid | 直接复制值 |
更新日志
需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。