收集 FileZilla FTP 日志
支持的语言:
Google SecOps
SIEM
本文档介绍了如何使用 Bindplane 将 FileZilla 日志注入到 Google Security Operations。Logstash 解析器代码从 FileZilla FTP 服务器日志中提取相关字段,例如时间戳、主机名、用户 ID 和说明。 然后,它会将这些提取的字段结构化为统一数据模型 (UDM),以便进行一致的安全分析和关联。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- Windows 2016 或更高版本,或者具有
systemd
的 Linux 主机 - 如果在代理后运行,防火墙端口处于开放状态
- 对 FileZilla Server 实例的特权访问权限
获取 Google SecOps 注入身份验证文件
- 登录 Google SecOps 控制台。
- 依次前往 SIEM 设置 > 收集代理。
- 下载注入身份验证文件。将该文件安全地保存在将要安装 Bindplane 的系统上。
获取 Google SecOps 客户 ID
- 登录 Google SecOps 控制台。
- 依次前往 SIEM 设置 > 配置文件。
- 复制并保存组织详细信息部分中的客户 ID。
在 FileZilla Server 实例上安装 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: filelog: # Adjust the path to the log file file_path: <PATH_TO>/filezilla-logs.log log_type: 'file' 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: 'FILEZILLA_FTP' raw_log_field: body service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - filelog 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
在 FileZilla 中配置日志记录
- 使用 FileZilla 登录服务器。
- 打开 FileZilla 软件。
- 依次前往修改 > 设置。
- 从菜单中选择日志记录。
- 提供以下配置详细信息:
- 选中在消息框中显示时间戳复选框。
- 选中记录到文件复选框。
- 文件名:输入文件名,然后选择存储路径(例如
filezilla-logs
)。 - 可选:限制日志文件的大小:选中此复选框可限制日志文件可使用的空间量。
- 可选:限制:您可以在此处以兆字节为单位输入日志文件的最大大小。
- 点击确定。
- 重启 FileZilla。
UDM 映射表
日志字段 | UDM 映射 | 逻辑 |
---|---|---|
数据 | read_only_udm.metadata.description | 原始日志 data 字段内容。 |
数据 | read_only_udm.metadata.event_timestamp.seconds | 使用 grok 模式从 data 字段中提取,并转换为纪元秒数。 |
数据 | read_only_udm.network.http.response_code | 使用 Grok 模式从 data 字段中提取。 |
数据 | read_only_udm.principal.hostname | 使用 Grok 模式从 data 字段中提取。 |
数据 | read_only_udm.principal.port | 使用 Grok 模式从 data 字段中提取。 |
数据 | read_only_udm.principal.user.userid | 使用 grok 模式从 data 字段中提取,仅当该值不是 not logged in 时才提取。 |
数据 | read_only_udm.target.ip | 使用 Grok 模式从 data 字段中提取。 |
数据 | read_only_udm.target.process.pid | 使用 Grok 模式从 data 字段中提取。 |
read_only_udm.metadata.event_type | 如果 target.ip 存在,则设置为 NETWORK_FTP ,否则设置为 GENERIC_EVENT 。 |
|
read_only_udm.metadata.log_type | 设置为 FILEZILLA_FTP 。 |
|
read_only_udm.metadata.product_name | 设置为 FILEZILLA 。 |
|
read_only_udm.metadata.vendor_name | 设置为 FILEZILLA 。 |
需要更多帮助?从社区成员和 Google SecOps 专业人士那里获得解答。