收集 PTC Windchill 日志

支持:

本文档介绍了如何使用 Bindplane 将 PTC Windchill 日志注入到 Google Security Operations。

PTC Windchill 是一个产品生命周期管理 (PLM) 平台,用于管理工程和制造团队的产品数据、流程和协作。该平台会从本地服务器部署生成访问、审核和配置更改日志。

准备工作

请确保满足以下前提条件:

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 PTC Windchill 服务器之间的网络连接
  • 如果通过代理运行,请确保防火墙端口根据 Bindplane 代理要求处于开放状态
  • 具有管理员权限的 PTC Windchill 服务器的特权访问权限

获取 Google SecOps 注入身份验证文件

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 收集代理
  3. 下载数据注入身份验证文件 。将该文件安全地保存在将安装 Bindplane 的系统上。

获取 Google SecOps 客户 ID

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 个人资料
  3. 组织详细信息 部分复制并保存客户 ID

安装 Bindplane 代理

按照以下说明在 Windows 或 Linux 操作系统上安装 Bindplane 代理。

Windows 安装

  1. 以管理员身份打开命令提示符PowerShell
  2. 运行以下命令:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sc query observiq-otel-collector
    

该服务应显示为 RUNNING

Linux 安装

  1. 打开具有 root 或 sudo 权限的终端。
  2. 运行以下命令:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sudo systemctl status observiq-otel-collector
    

该服务应显示为 active (running)

其他安装资源

如需了解其他安装选项和问题排查,请参阅 Bindplane 代理安装指南

配置 Bindplane 代理以注入 syslog 并发送到 Google SecOps

找到配置文件

  • Linux

    sudo nano /etc/bindplane-agent/config.yaml
    
  • Windows

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

修改配置文件

  • config.yaml 的全部内容替换为以下配置:

    receivers:
      tcplog:
        listen_address: "0.0.0.0:514"
    
    exporters:
      chronicle/windchill:
        compression: gzip
        creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
        customer_id: '<customer_id>'
        endpoint: malachiteingestion-pa.googleapis.com
        log_type: WINDCHILL
        raw_log_field: body
    
    service:
      pipelines:
        logs/windchill_to_chronicle:
          receivers:
            - tcplog
          exporters:
            - chronicle/windchill
    

配置参数

替换以下占位符:

  • 接收器配置

    • listen_address:要监听的 IP 地址和端口:
      • 0.0.0.0 以监听所有接口(推荐)
      • 端口 514 是标准 syslog 端口(在 Linux 上需要 root;对于非 root 用户,请使用 1514
  • 导出器配置

    • creds_file_path:注入身份验证文件的完整路径:
      • Linux: /etc/bindplane-agent/ingestion-auth.json
      • Windows: C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • customer_id:从 Google SecOps 控制台复制的客户 ID
    • endpoint:区域级端点网址:
      • 美国malachiteingestion-pa.googleapis.com
      • 欧洲: europe-malachiteingestion-pa.googleapis.com
      • 亚洲: asia-southeast1-malachiteingestion-pa.googleapis.com
      • 如需查看完整列表,请参阅区域级端点

保存配置文件

  • 修改后,保存文件:
    • Linux:按 Ctrl+O,然后按 Enter,再按 Ctrl+X
    • Windows:依次点击文件 > 保存

重启 Bindplane 代理以应用更改

如需在 Linux 中重启 Bindplane 代理,请执行以下操作:

  1. 运行以下命令:

    sudo systemctl restart observiq-otel-collector
    
  2. 验证服务正在运行:

    sudo systemctl status observiq-otel-collector
    
  3. 检查日志中的错误:

    sudo journalctl -u observiq-otel-collector -f
    

如需在 Windows 中重启 Bindplane 代理,请执行以下操作:

  1. 请从下列选项中选择一项:

    • 以管理员身份运行命令提示符或 PowerShell:
    net stop observiq-otel-collector && net start observiq-otel-collector
    
    • 服务控制台:
      1. Win+R,输入 services.msc,然后按 Enter 键。
      2. 找到 observIQ OpenTelemetry Collector
      3. 右键点击并选择重启
  2. 验证服务正在运行:

    sc query observiq-otel-collector
    
  3. 检查日志中的错误:

    type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
    

配置 PTC Windchill syslog 转发

  1. 以管理员身份登录 PTC Windchill 服务器。
  2. 配置 rsyslog 或 syslog 代理以转发 Windchill 应用日志。修改 rsyslog 配置:

    sudo nano /etc/rsyslog.d/windchill.conf
    
  3. 添加以下代码行,以将 Windchill 日志文件转发到 Bindplane 代理:

    # Forward PTC Windchill logs to Bindplane agent
    module(load="imfile")
    input(type="imfile" File="/path/to/windchill/logs/*.log" Tag="windchill" Severity="info" Facility="local0")
    if $syslogtag == 'windchill' then @@<bindplane-ip>:514
    
    • /path/to/windchill/logs/ 替换为实际的 Windchill 日志目录路径。
    • <bindplane-ip> 替换为 Bindplane 代理主机的 IP 地址。
  4. 重启 rsyslog 服务:

    sudo systemctl restart rsyslog
    
  5. 通过检查 Bindplane 代理日志,验证日志是否正在发送。

UDM 映射表

日志字段 UDM 映射 逻辑
eventlabel metadata.description 直接复制值
eventtime metadata.event_timestamp 使用日期过滤器转换,格式为 SYSLOGTIMESTAMP、ISO8601
metadata.event_type 如果 has_principal == "true" 且 has_principal_user == "true" 且 has_target == "true",则设置为“USER_LOGIN”;如果 has_target_resource == "true",则设置为“USER_RESOURCE_ACCESS”;如果 has_principal == "true" 且 has_principal_user == "true",则设置为“USER_UNCATEGORIZED”;如果 has_principal == "true",则设置为“STATUS_UPDATE”;否则设置为“GENERIC_EVENT”
dbschema metadata.ingestion_labels 与 db_schema 对象合并(key="DBSCHEMA", value=dbschema)
dbname metadata.product_deployment_id 直接复制值
eventlabel、description metadata.product_event_type 如果 description 不为空,则取 description 中的值,否则取 eventlabel 中的值
context metadata.product_log_id 直接复制值
version metadata.product_version 直接复制值
ohost observer.hostname 如果 ohost 不是 IP,则直接复制值
ohost observer.ip 如果 ohost 是 IP,则直接复制值
domainpath principal.administrative_domain 直接复制值
ipaddress principal.asset.hostname 如果 ipaddress 不是 IP,则直接复制值
ipaddress principal.asset.ip 如果 ipaddress 是 IP,则直接复制值
ipaddress、phost principal.hostname 如果 ipaddress 不是 IP,则取 ipaddress 中的值,否则如果 phost 不是 IP,则取 phost 中的值
ipaddress、phost principal.ip 如果 ipaddress 是 IP,则取 ipaddress 中的值,否则如果 phost 是 IP,则取 phost 中的值
folderpath principal.process.file.full_path 直接复制值
user_product_object_id principal.user.product_object_id 直接复制值
user_display_name principal.user.user_display_name 直接复制值
username、user_userid principal.user.userid 如果 username 不为空,则取 username 中的值,否则取 user_userid 中的值
domain_name target.domain.name 直接复制值
target_path target.file.full_path 直接复制值
namespace target.namespace 直接复制值
lifecyclestate、targetname、targetnumber、targettype target.resource.attribute.labels 与 lifecyclestate_label(key="lifecyclestate", value=lifecyclestate)、targetname_label(key="targetname", value=targetname)、targetnumber_label(key="targetnumber", value=targetnumber)、targettype_label(key="targettype", value=targettype)合并
target_number target.resource.id 直接复制值
target_name target.resource.name 直接复制值
target_identity target.resource.product_object_id 直接复制值
target_subtype target.resource.resource_subtype 直接复制值
metadata.product_name 设置为“Windchill”
metadata.vendor_name 设置为“PTC”

更新日志

查看此解析器的更新日志

需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。