收集 Cisco Application Control Engine (ACE) 日志

解析器版本: 2.0

支持:

本文档介绍了如何使用 Bindplane 将 Cisco Application Control Engine (ACE) 日志注入到 Google Security Operations 中。解析器会从 SYSLOG 消息中提取与安全相关的信息。它使用正则表达式来识别特定事件类型,提取源 IP 地址或目标 IP 地址和端口等关键数据点,并将这些数据点构建为统一数据模型 (UDM),以便进行一致的分析。

准备工作

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

  • Google SecOps 实例
  • Windows 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • 如果通过代理运行,请确保防火墙 端口 处于开放状态
  • 对 Cisco Application Control Engine 的特权访问权限

获取 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
    

Linux 安装

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

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    

其他安装资源

如需了解其他安装选项,请参阅安装指南

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

  1. 访问配置文件:
    • 找到 config.yaml 文件。通常,该文件位于 Linux 上的 /etc/bindplane-agent/ 目录中,或位于 Windows 上的安装目录中。
    • 使用文本编辑器(例如 nanovi 或记事本)打开该文件。
  2. 按如下方式修改 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: 'CISCO_ACE'
            raw_log_field: body
            ingestion_labels:
    
    service:
        pipelines:
            logs/source0__chronicle_w_labels-0:
                receivers:
                    - udplog
                exporters:
                    - chronicle/chronicle_w_labels
    

重启 Bindplane 代理以应用更改

  • 如需在 Linux 中重启 Bindplane 代理,请运行以下命令:

    sudo systemctl restart bindplane-agent
    
  • 如需在 Windows 中重启 Bindplane 代理,您可以使用 服务 控制台,也可以输入以下命令:

    net stop BindPlaneAgent && net start BindPlaneAgent
    

在 Cisco Application Control Engine (ACE) 上配置 syslog

  1. 登录 Cisco ACE 设备。
  2. 依次前往主菜单 > 高级选项 > Syslog 配置
  3. 点击 Add First Server ,然后点击 OK
  4. 在 First Syslog Server 字段中输入 Bindplane 代理 IP 地址和端口号。
  5. 点击 OK;系统将使用新设置重启。
  6. 再次点击 OK
  7. 点击 Return

UDM 映射表

日志字段 UDM 映射 逻辑
操作 security_result.action_details action 字段中获取值,并执行小写操作。
操作 security_result.action 如果 actionbuilt,则设置为 ALLOW。如果 actionteardown,则设置为 BLOCK
字节 network.sent_bytes 仅针对 event_id 302025 填充。
dst_interface target.resource.attribute.labels.value
dst_ip target.ip
dst_port target.port
event_id metadata.product_event_type
icmp_code_laddr additional.fields.value.string_value 键为 icmp_code_laddr
icmp_code_xlated additional.fields.value.string_value 键为 icmp_code_xlated
icmp_seq_num additional.fields.value.string_value 键为 icmp_seq_num
协议 network.ip_protocol
协议 metadata.description 用于填充特定事件类型的说明。
src_interface principal.resource.attribute.labels.value
src_ip principal.ip
src_port principal.port
时间戳 metadata.event_timestamp.seconds 转换为纪元秒数。
metadata.log_type 硬编码为 CISCO_ACE
metadata.event_type 对于事件 ID 302024、302025、302022、302023、302026、302027,设置为 NETWORK_CONNECTION。对于事件 ID 400000,设置为 SCAN_UNCATEGORIZED
target.resource.attribute.labels.key 硬编码为 Connection Interface
principal.resource.attribute.labels.key 硬编码为 Connection Interface
icmp_code_laddr","icmp_code_xlated","icmp_seq_num additional.fields 从更新日志映射

更新日志

查看此解析器的更新日志

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