收集 vsftpd 日志

支持:

本文档介绍了如何使用 Bindplane 代理将 vsftpd 日志注入到 Google Security Operations 中。

vsftpd(Very Secure FTP Daemon,非常安全的 FTP 守护程序)是一种 FTP 服务器,可为 FTP 连接、文件传输、身份验证事件和会话活动生成 syslog 消息。

准备工作

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

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

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

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 收集代理
  3. 下载注入身份验证文件
  4. 将该文件安全地保存在将安装 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
    

    该服务应显示为正在运行

Linux 安装

  1. 使用根权限或 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
    

    该服务应显示为活跃 (正在运行)

其他安装资源

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

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

找到配置文件

  • Linux

    sudo nano /opt/observiq-otel-collector/config.yaml
    
  • Windows

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

修改配置文件

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

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

配置参数

替换以下占位符:

  • 接收器配置

    • listen_address:要监听的 IP 地址和端口:
      • 0.0.0.0 以监听所有接口(推荐)
      • 端口 514 是标准 syslog 端口(在 Linux 上需要根权限;对于非根用户,请使用 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 代理,请运行以下命令:

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

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

      sudo journalctl -u observiq-otel-collector -f
      
  • 如需在 Windows 中重启 Bindplane 代理,请选择以下选项之一:

    • 以管理员身份运行命令提示符或 PowerShell:

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • 服务控制台:

      1. Win+R,输入 services.msc,然后按 Enter 键。
      2. 找到 observIQ OpenTelemetry Collector
      3. 右键点击并选择重启
      4. 验证服务正在运行:

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

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

为 vsftpd 配置 syslog 转发

  1. 修改 vsftpd 配置文件:

    sudo nano /etc/vsftpd.conf
    
  2. 设置以下参数:

    syslog_enable=YES
    log_ftp_protocol=YES
    
  3. 配置 rsyslog 以转发 vsftpd 日志。修改 /etc/rsyslog.conf 或创建新文件 /etc/rsyslog.d/vsftpd.conf

    sudo nano /etc/rsyslog.d/vsftpd.conf
    
  4. 添加以下转发规则(将 <bindplane-ip> 替换为您的 Bindplane 代理 IP 地址):

    if $programname == 'vsftpd' then @<bindplane-ip>:514
    
  5. 重启 vsftpd 和 rsyslog 以应用更改:

    sudo systemctl restart vsftpd
    sudo systemctl restart rsyslog
    

UDM 映射表

日志字段 UDM 映射 逻辑
certificate security_result.detection_fields.key:“cert”
security_result.detection_fields.valuecertificate 的值
certificate 字段的值映射到键为“cert”的 security_result.detection_fields 对象。
cipher network.tls.cipher 直接映射 cipher 字段的值。
client_ip principal.ip 直接映射 client_ip 字段的值。
date metadata.event_timestamp monthyeartime 结合使用,以构造 metadata.event_timestamp。格式派生自原始日志中的 timestamp 字段,经过解析并转换为时间戳对象。
day metadata.event_timestamp monthyeartime 结合使用,以构造 metadata.event_timestamp
desc metadata.description 直接映射 desc 字段的值(从 type 字段提取)。这适用于“MKDIR”“RMDIR”和“DELETE”操作。
description network.ftp.command
security_result.description
target.file.full_path
如果 type 为“FTP command”,则该值会映射到 network.ftp.command。如果 type 为“DEBUG”且与特定 SSL 模式不匹配,则该值会映射到 security_result.description。如果 type 以“OK”开头且不是“OK LOGIN”,并且日志描述了文件操作(MKDIR、RMDIR、DELETE),则该值会映射到 target.file.full_path
file_name target.file.full_path 直接映射 file_name 字段的值。
file_size network.received_bytes
network.sent_bytes
如果 type 为“OK DOWNLOAD”或“FAIL DOWNLOAD”,则该值会转换为无符号整数并映射到 network.received_bytes。如果 type 为“OK UPLOAD”或“FAIL UPLOAD”,则该值会转换为无符号整数并映射到 network.sent_bytes。 如果 type 为“OK LOGIN”,则设置为“USER_LOGIN”。如果 type 与文件操作相关(“OK UPLOAD”“OK DOWNLOAD”“FAIL DOWNLOAD”“OK MKDIR”“OK RMDIR”“OK DELETE”“FAIL UPLOAD”),则设置为“FILE_UNCATEGORIZED”。对于所有其他 type 值,设置为“STATUS_UPDATE”。始终设置为“VSFTPD”。始终设置为“VSFTPD”。始终设置为“VSFTPD”。
month metadata.event_timestamp dayyeartime 结合使用,以构造 metadata.event_timestamp
pid principal.process.pid 直接映射 pid 字段的值。
response_code network.http.response_code response_code 字段的值转换为整数并进行映射。
reused_status security_result.detection_fields.key:“reused status”
security_result.detection_fields.valuereused_status 的值
reused_status 字段的值映射到键为“reused status”的 security_result.detection_fields 对象。
speed additional.fields.key:“download_speed”或“upload_speed”
additional.fields.value.string_valuespeed 的值
如果 type 为“OK DOWNLOAD”或“FAIL DOWNLOAD”,则该值会映射到键为“download_speed”的 additional.fields。如果 type 为“OK UPLOAD”或“FAIL UPLOAD”,则该值会映射到键为“upload_speed”的 additional.fields
ssl_shutdown_state security_result.detection_fields.key:“SSL Shutdown State”
security_result.detection_fields.valuessl_shutdown_state 的值
ssl_shutdown_state 字段的值映射到键为“SSL Shutdown State”的 security_result.detection_fields 对象。
ssl_version network.tls.version 直接映射 ssl_version 字段的值。
time metadata.event_timestamp daymonthyear 结合使用,以构造 metadata.event_timestamp
type metadata.description
security_result.action_details
type 字段的值映射到 metadata.description,但“OK LOGIN”除外。 当该值表示允许或阻止操作(以“OK”或“FAIL”开头)时,也会映射到 security_result.action_details
userid principal.user.userid
target.user.userid
如果 type 为“OK LOGIN”,则该值会映射到 target.user.userid。否则,该值会映射到 principal.user.userid
year metadata.event_timestamp daymonthtime 结合使用,以构造 metadata.event_timestamp。如果 type 为“OK LOGIN”,则设置为“NETWORK”。如果 type 为“OK LOGIN”,则设置为“MACHINE”。如果 type 以“OK”开头,则设置为“ALLOW”。如果 type 以“FAIL”开头,则设置为“BLOCK”。

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