收集 Forescout eyeInspect 日志
解析器版本:12.0
本文档介绍了如何使用 Bindplane 代理将 Forescout eyeInspect 日志注入到 Google Security Operations。
Forescout eyeInspect 是一款 OT/ICS 网络监控平台,可在运营技术环境中提供工业协议的深度数据包检测、资产发现和威胁检测功能。它以 CEF 格式生成工业网络事件的提醒和审核日志。
准备工作
请确保满足以下前提条件:
- Google SecOps 实例
- Windows Server 2016 或更高版本,或者具有
systemd的 Linux 主机 - Bindplane 代理与 Forescout eyeInspect 命令中心之间的网络连接
- 如果在代理后面运行,请确保防火墙端口已根据 Bindplane 代理要求打开
- 具有管理员权限的 Forescout eyeInspect 命令中心特权访问权限
获取 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/forescout_eyeinspect: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<customer_id>' endpoint: malachiteingestion-pa.googleapis.com log_type: FORESCOUT_EYEINSPECT raw_log_field: body ingestion_labels: env: production service: pipelines: logs/eyeinspect_to_chronicle: receivers: - tcplog exporters: - chronicle/forescout_eyeinspect
配置参数
替换以下占位符:
接收器配置:
tcplog:基于协议的接收器类型:udplog(适用于 UDP syslog)tcplog(适用于 TCP syslog)
0.0.0.0:要监听的 IP 地址:0.0.0.0侦听所有接口(推荐)- 在某个接口上监听的特定 IP 地址
514:要监听的端口号(例如514、1514、6514)
导出器配置:
forescout_eyeinspect:导出器的描述性名称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 - 如需查看完整列表,请参阅区域级端点
- 美国:
FORESCOUT_EYEINSPECT:日志类型,与在 Chronicle 中显示的完全一致ingestion_labels:YAML 格式的可选标签(例如env: production)
流水线配置:
eyeinspect_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"
- 按
配置 Forescout eyeInspect syslog 转发
- 登录 Forescout eyeInspect Command Center 网络控制台。
- 前往提醒转发配置部分。
- 点击添加以创建新的提醒转发目标。
- 提供以下配置详细信息:
- 主机:输入 Bindplane 代理主机(例如
192.168.1.100)的 IP 地址。 - 端口:输入
514(必须与 Bindplane 代理接收器端口匹配)。 - 协议:选择 TCP(推荐)或 UDP。
- 格式:选择 CEF(通用事件格式)。
- 严重程度:选择信息或更低的严重程度,以捕获所有事件,包括提醒和审核日志。
- 主机:输入 Bindplane 代理主机(例如
- 点击保存。
通过检查 Bindplane 代理日志,验证是否正在接收 syslog 消息。
UDM 映射表
| 日志字段 | UDM 映射 | 逻辑 |
|---|---|---|
message |
about |
已映射:CEF: → about |
deviceNtDomain |
about.administrative_domain |
已重命名/已映射 |
deviceExternalId |
about.asset.asset_id |
直接映射 |
device_product |
about.asset.asset_id |
直接映射 |
device_vendor |
about.asset.asset_id |
直接映射 |
fileHash |
about.file.full_path |
直接映射 |
filePath |
about.file.full_path |
已重命名/已映射 |
_hash |
about.file.sha256 |
已重命名/已映射 |
fileHash |
about.file.sha256 |
已重命名/已映射 |
fsize |
about.file.size |
已重命名/已映射 |
dvchost |
about.hostname |
已重命名/已映射 |
ips |
about.ip |
已合并 |
message |
about.ip |
已映射:CEF: → ips |
dvc_mac |
about.mac |
已映射:slot → mac_address |
dvcmac |
about.mac |
已合并 |
mac_address |
about.mac |
已合并 |
message |
about.mac |
已映射:CEF: → mac_address、CEF: → dvcmac |
deviceTranslatedAddress |
about.nat_ip |
已合并 |
message |
about.nat_ip |
已映射:CEF: → deviceTranslatedAddress |
Emne |
about.process.command_line |
直接映射 |
Path |
about.process.command_line |
直接映射 |
Subject |
about.process.command_line |
直接映射 |
deviceProcessName |
about.process.command_line |
已重命名/已映射 |
dvcpid |
about.process.pid |
已重命名/已映射 |
message |
about.resource.attribute.permissions |
已映射:CEF: → permissions |
permissions |
about.resource.attribute.permissions |
已合并 |
Assigned_hosts_label |
additional.fields |
已合并 |
Available_memory_label |
additional.fields |
已合并 |
Available_swap_label |
additional.fields |
已合并 |
Connected_clients_label |
additional.fields |
已合并 |
EM_connection_status_label |
additional.fields |
已合并 |
Engine_status_label |
additional.fields |
已合并 |
Installed_Plugins_label |
additional.fields |
已合并 |
Used_memory_label |
additional.fields |
已合并 |
Used_swap_label |
additional.fields |
已合并 |
additional_cfp1 |
additional.fields |
已合并 |
additional_cfp2 |
additional.fields |
已合并 |
additional_cfp3 |
additional.fields |
已合并 |
additional_cfp4 |
additional.fields |
已合并 |
additional_cn1 |
additional.fields |
已合并 |
additional_cn2 |
additional.fields |
已合并 |
additional_cn3 |
additional.fields |
已合并 |
additional_cs1 |
additional.fields |
已合并 |
additional_cs2 |
additional.fields |
已合并 |
additional_cs3 |
additional.fields |
已合并 |
additional_cs4 |
additional.fields |
已合并 |
additional_cs5 |
additional.fields |
已合并 |
additional_cs6 |
additional.fields |
已合并 |
additional_cs7 |
additional.fields |
已合并 |
additional_devicePayloadId |
additional.fields |
已合并 |
additional_eventId |
additional.fields |
已合并 |
additional_flexString1 |
additional.fields |
已合并 |
additional_fname |
additional.fields |
已合并 |
application_status_label |
additional.fields |
已合并 |
cnt_label |
additional.fields |
已合并 |
cpu_usage_label |
additional.fields |
已合并 |
cs2 |
additional.fields |
已映射:arc_test → additional_cs2 |
cs5_label |
additional.fields |
已合并 |
event_type |
additional.fields |
映射的值(共 11 个,例如 System statistics → cpu_usage_label、System statistics →... |
message |
additional.fields |
映射值(总共 32 个,例如 CEF: → additional_eventId、CEF: → `additional_devicePayl... |
type_label |
additional.fields |
已合并 |
act |
extensions.auth.type |
已映射:(?i)LOGIN → MACHINE |
app_protocol |
extensions.auth.type |
已映射:CounterACT → AUTHTYPE_UNSPECIFIED |
kv_data |
extensions.auth.type |
已映射:Log: Login → AUTHTYPE_UNSPECIFIED,logged out → AUTHTYPE_UNSPECIFIED |
message |
extensions.auth.type |
已映射:CEF: → MACHINE、CEF: → AUTHTYPE_UNSPECIFIED |
message |
intermediary |
已映射:CEF: → intermediary |
iporhost |
intermediary.asset.hostname |
直接映射 |
middle_ip |
intermediary.asset.ip |
已合并 |
deviceDnsDomain |
intermediary.hostname |
直接映射 |
iporhost |
intermediary.hostname |
直接映射 |
middle_ip |
intermediary.ip |
已合并 |
pid |
intermediary.process.pid |
直接映射 |
desc |
metadata.description |
直接映射 |
event_type |
metadata.description |
直接映射 |
msg |
metadata.description |
已重命名/已映射 |
Generated |
metadata.event_timestamp |
解析为 yyyy-MM-ddTHH:mm:ss |
Received |
metadata.event_timestamp |
解析为 yyyy-MM-ddTHH:mm:ss |
rt |
metadata.event_timestamp |
解析为 yyyy-MM-ddTHH:mm:ssZ |
time |
metadata.event_timestamp |
解析为 ISO8601 |
timestamp |
metadata.event_timestamp |
解析为 ISO8601 |
ts_syslog |
metadata.event_timestamp |
解析为 MMM dd HH:mm:ss |
act |
metadata.event_type |
已映射:(?i)LOGIN → USER_LOGIN |
app_protocol |
metadata.event_type |
映射:CounterACT → USER_LOGIN、CounterACT → USER_LOGOUT、CounterACT → `GENERIC_E... |
app_protocol_output |
metadata.event_type |
已映射:SSH → STATUS_UPDATE |
data |
metadata.event_type |
已映射:Target: → NETWORK_CONNECTION |
et_lower |
metadata.event_type |
映射:nac policy log → SCAN_HOST、port bite → SCAN_NETWORK、block event → `NETWO... |
event_name |
metadata.event_type |
已映射:"LogSpyware","LogPredictiveMachineLearning" → SCAN_UNCATEGORIZED |
has_principal |
metadata.event_type |
已映射:true → NETWORK_CONNECTION |
has_target |
metadata.event_type |
已映射:true → USER_UNCATEGORIZED |
kv_data |
metadata.event_type |
已映射:Log: Login → USER_LOGIN、logged out → USER_LOGOUT、`RADIUS 身份验证重新... |
message |
metadata.event_type |
映射的值(总共 12 个,例如 CEF: → USER_LOGIN、CEF: → USER_RESOURCE_ACCESS、CEF:... |
meta_event_type |
metadata.event_type |
已映射:GENERIC_EVENT → NETWORK_CONNECTION、GENERIC_EVENT → STATUS_UPDATE、`GENERIC_... |
device_event_class_id |
metadata.product_event_type |
直接映射 |
engineName |
metadata.product_event_type |
直接映射 |
event_name |
metadata.product_event_type |
直接映射 |
eventtype |
metadata.product_event_type |
直接映射 |
alertId |
metadata.product_log_id |
直接映射 |
externalId |
metadata.product_log_id |
直接映射 |
device_product |
metadata.product_name |
直接映射 |
message |
metadata.product_name |
已映射:CEF: → FORESCOUT EYEINSPECT |
product |
metadata.product_name |
直接映射 |
device_version |
metadata.product_version |
直接映射 |
device_vendor |
metadata.vendor_name |
已重命名/已映射 |
message |
metadata.vendor_name |
已映射:CEF: → FORESCOUT |
vendor_name |
metadata.vendor_name |
直接映射 |
app_protocol_output |
network.application_protocol |
直接映射 |
deviceDirection |
network.direction |
已映射:0 → INBOUND,1 → OUTBOUND |
message |
network.direction |
已映射:CEF: → INBOUND、CEF: → OUTBOUND |
answers |
network.dns.answers |
已合并 |
app |
network.dns.answers |
已映射:DNS → answers |
message |
network.dns.answers |
已映射:CEF: → answers |
app |
network.dns.questions |
已映射:DNS → questions |
message |
network.dns.questions |
已映射:CEF: → questions |
questions |
network.dns.questions |
已合并 |
mail_from |
network.email.from |
直接映射 |
et_lower |
network.email.subject |
已映射:mail (anomaly/infection) (attempt/sender/server/amount/attachment/receipeint) → `m... |
mail_subject |
network.email.subject |
已合并 |
message |
network.email.subject |
已映射:CEF: → mail_subject |
et_lower |
network.email.to |
已映射:mail (anomaly/infection) (attempt/sender/server/amount/attachment/receipeint) → `m... |
mail_to |
network.email.to |
已合并 |
message |
network.email.to |
已映射:CEF: → mail_to |
requestMethod |
network.http.method |
已重命名/已映射 |
requestClientApplication |
network.http.user_agent |
已重命名/已映射 |
ip_protocol_out |
network.ip_protocol |
直接映射 |
l4Proto |
network.ip_protocol |
直接映射 |
protocol |
network.ip_protocol |
直接映射 |
protocol1 |
network.ip_protocol |
直接映射 |
downDataLength |
network.received_bytes |
直接映射 |
in |
network.received_bytes |
已重命名/已映射 |
message |
network.received_bytes |
已映射:CEF: → uinteger |
message |
network.sent_bytes |
已映射:CEF: → uinteger |
out |
network.sent_bytes |
已重命名/已映射 |
upDataLength |
network.sent_bytes |
直接映射 |
session_id |
network.session_id |
直接映射 |
sensorName |
observer.hostname |
直接映射 |
sntdom |
principal.administrative_domain |
已重命名/已映射 |
sourceServiceName |
principal.application |
已重命名/已映射 |
Host |
principal.asset.hostname |
直接映射 |
Hostname |
principal.asset.hostname |
直接映射 |
Source |
principal.asset.hostname |
直接映射 |
srcHostName |
principal.asset.hostname |
直接映射 |
app_protocol |
principal.asset.ip |
已映射:CounterACT → source_ip |
app_protocol_output |
principal.asset.ip |
已映射:SSH → source_ip |
et_lower |
principal.asset.ip |
已映射:block event → host_ip,(?i)Property change detected → source_ip |
host_ip |
principal.asset.ip |
已合并 |
kv_data |
principal.asset.ip |
已映射:Log: Login → source_ip,logged out → source_ip |
message |
principal.asset.ip |
已映射:CEF: → srcIp、CEF: → source_ip、CEF: → host_ip、CEF: → src_ip |
source_ip |
principal.asset.ip |
已合并 |
srcIp |
principal.asset.ip |
已合并 |
src_ip |
principal.asset.ip |
已合并 |
message |
principal.asset.mac |
已映射:CEF: → srcMac |
srcMac |
principal.asset.mac |
已合并 |
pcapSha1 |
principal.file.sha1 |
直接映射 |
Group_name |
principal.group.group_display_name |
直接映射 |
Gruppenavn |
principal.group.group_display_name |
直接映射 |
Device_name |
principal.hostname |
直接映射 |
Enhetsnavn |
principal.hostname |
直接映射 |
Host |
principal.hostname |
直接映射 |
Hostname |
principal.hostname |
直接映射 |
Source |
principal.hostname |
直接映射 |
shost |
principal.hostname |
已重命名/已映射 |
srcHostName |
principal.hostname |
直接映射 |
app_protocol |
principal.ip |
已映射:CounterACT → source_ip |
app_protocol_output |
principal.ip |
已映射:SSH → source_ip |
et_lower |
principal.ip |
已映射:block event → host_ip,(?i)Property change detected → source_ip |
host_ip |
principal.ip |
已合并 |
kv_data |
principal.ip |
已映射:Log: Login → source_ip,logged out → source_ip |
message |
principal.ip |
映射值(总共 6 个,例如 CEF: → principal_ip、CEF: → shost、CEF: → srcIp) |
principal_ip |
principal.ip |
已合并 |
shost |
principal.ip |
已合并 |
source_ip |
principal.ip |
已合并 |
srcIp |
principal.ip |
已合并 |
src_ip |
principal.ip |
已合并 |
MAC |
principal.mac |
已合并 |
et_lower |
principal.mac |
已映射:(?i)Property change detected → MAC |
mac |
principal.mac |
已合并 |
message |
principal.mac |
已映射:CEF: → mac、CEF: → srcMac、CEF: → MAC、CEF: → src_mac |
srcMac |
principal.mac |
已合并 |
src_mac |
principal.mac |
已合并 |
message |
principal.nat_ip |
已映射:CEF: → sourceTranslatedAddress |
sourceTranslatedAddress |
principal.nat_ip |
已合并 |
sourceTranslatedPort |
principal.nat_port |
已重命名/已映射 |
source_port |
principal.port |
已重命名/已映射 |
spt |
principal.port |
已重命名/已映射 |
srcPort |
principal.port |
直接映射 |
src_port |
principal.port |
直接映射 |
command |
principal.process.command_line |
直接映射 |
sproc |
principal.process.command_line |
已重命名/已映射 |
spid |
principal.process.pid |
已重命名/已映射 |
resource |
principal.resource.name |
直接映射 |
message |
principal.user.attribute.roles |
已映射:CEF: → principal_role |
principal_role |
principal.user.attribute.roles |
已合并 |
suser |
principal.user.user_display_name |
直接映射 |
User |
principal.user.userid |
直接映射 |
suid |
principal.user.userid |
已重命名/已映射 |
user_id |
principal.user.userid |
直接映射 |
user_name |
principal.user.userid |
直接映射 |
username |
principal.user.userid |
直接映射 |
app_protocol |
security_result |
已映射:CounterACT → sec_result |
data |
security_result |
已映射:Target: → sec_result |
kv_data |
security_result |
已映射:Log: Login → sec_result、logged out → sec_result、`RADIUS Authentication res... |
message |
security_result |
已映射:CEF: → security_result、CEF: → sec_result |
sec_result |
security_result |
已合并 |
message |
security_result.about.resource.attribute.labels |
已映射:CEF: → res_label |
res_label |
security_result.about.resource.attribute.labels |
已合并 |
_action |
security_result.action |
已合并 |
act |
security_result.action |
已映射:accept → _action,deny → _action |
action_status |
security_result.action |
已映射:"success", "successful" → sec_action |
app_protocol |
security_result.action |
已映射:CounterACT → sec_action |
et_lower |
security_result.action |
已映射:block event → security_result_action |
kv_data |
security_result.action |
已映射:Log: Login → sec_action |
message |
security_result.action |
已映射:CEF: → _action、CEF: → sec_action、CEF: → security_result_action |
sec_action |
security_result.action |
已合并 |
security_result_action |
security_result.action |
已合并 |
Action_Taken |
security_result.action_details |
直接映射 |
act |
security_result.action_details |
直接映射 |
cat |
security_result.alert_state |
已映射:alert → ALERTING |
message |
security_result.alert_state |
已映射:CEF: → ALERTING、CEF: → NOT_ALERTING |
message |
security_result.attack_details.tactics |
已映射:CEF: → tactics |
tactics |
security_result.attack_details.tactics |
已合并 |
message |
security_result.attack_details.techniques |
已映射:CEF: → techniques |
techniques |
security_result.attack_details.techniques |
已合并 |
alertCategory |
security_result.category_details |
已合并 |
cat |
security_result.category_details |
已合并 |
message |
security_result.category_details |
已映射:CEF: → cat、CEF: → alertCategory |
Category |
security_result.description |
直接映射 |
Reason |
security_result.description |
直接映射 |
Scan_Type |
security_result.description |
直接映射 |
Type |
security_result.description |
直接映射 |
act |
security_result.description |
直接映射 |
description |
security_result.description |
直接映射 |
details |
security_result.description |
直接映射 |
et_lower |
security_result.description |
直接映射 |
event_type |
security_result.description |
直接映射 |
kv_data |
security_result.description |
直接映射 |
msg_data_2 |
security_result.description |
直接映射 |
policy_details |
security_result.description |
直接映射 |
rnmsg |
security_result.description |
直接映射 |
dstMacVendor_label |
security_result.detection_fields |
已合并 |
infection_channel_label |
security_result.detection_fields |
已合并 |
l2Proto_label |
security_result.detection_fields |
已合并 |
l3Proto_label |
security_result.detection_fields |
已合并 |
message |
security_result.detection_fields |
映射值(总共 13 个,例如 CEF: → operation_label、CEF: → operasjon_label、CEF:... |
operasjon_label |
security_result.detection_fields |
已合并 |
operation_label |
security_result.detection_fields |
已合并 |
permission_label |
security_result.detection_fields |
已合并 |
protocol_label |
security_result.detection_fields |
已合并 |
protocol_type |
security_result.detection_fields |
已映射:IP → protocol_label |
spyware_Grayware_Type_label |
security_result.detection_fields |
已合并 |
srcMacVendor_label |
security_result.detection_fields |
已合并 |
status_label |
security_result.detection_fields |
已合并 |
threat_probability_label |
security_result.detection_fields |
已合并 |
tillatelse_label |
security_result.detection_fields |
已合并 |
Rule |
security_result.rule_id |
直接映射 |
alert_id |
security_result.rule_id |
直接映射 |
device_event_class_id |
security_result.rule_id |
直接映射 |
typeId |
security_result.rule_id |
直接映射 |
Match |
security_result.rule_name |
直接映射 |
et_lower |
security_result.rule_name |
已映射:block event → Virtual Firewall blocking |
is_fw_blocking |
security_result.rule_name |
已映射:true → Virtual Firewall blocking |
message |
security_result.rule_name |
已映射:CEF: → Virtual Firewall blocking |
mwProfile |
security_result.rule_name |
直接映射 |
name |
security_result.rule_name |
直接映射 |
message |
security_result.severity |
映射值(总共 6 个,例如 CEF: → LOW、CEF: → MEDIUM、CEF: → HIGH) |
severity |
security_result.severity |
映射的值(总共 13 个,例如 "0", "1", "2", "3", "LOW" → LOW、“4”“5”“6”“MEDIUM”... |
severity |
security_result.severity_details |
直接映射 |
Result |
security_result.summary |
直接映射 |
appcategory |
security_result.summary |
直接映射 |
event_name |
security_result.summary |
直接映射 |
event_type |
security_result.summary |
直接映射 |
log_description |
security_result.summary |
直接映射 |
reason |
security_result.summary |
已重命名/已映射 |
Spyware |
security_result.threat_name |
直接映射 |
Unknown_Threat |
security_result.threat_name |
直接映射 |
Virus_Malware_Name |
security_result.threat_name |
直接映射 |
threat |
security_result.threat_name |
直接映射 |
oldFilePath |
src.file.full_path |
已重命名/已映射 |
oldFileSize |
src.file.size |
已重命名/已映射 |
message |
src.resource.attribute.permissions |
已映射:CEF: → old_permissions |
old_permissions |
src.resource.attribute.permissions |
已合并 |
dntdom |
target.administrative_domain |
已重命名/已映射 |
destinationServiceName |
target.application |
已重命名/已映射 |
Destination |
target.asset.hostname |
直接映射 |
Target |
target.asset.hostname |
直接映射 |
computer_name |
target.asset.hostname |
直接映射 |
dstHostName |
target.asset.hostname |
直接映射 |
Destination |
target.asset.ip |
已合并 |
app_protocol |
target.asset.ip |
已映射:CounterACT → target_ip、CounterACT → Destination |
data |
target.asset.ip |
已映射:Target: → Destination |
dest_ip |
target.asset.ip |
已合并 |
destination_ip |
target.asset.ip |
已合并 |
dstIp |
target.asset.ip |
已合并 |
et_lower |
target.asset.ip |
已映射:port bite → destination_ip,block event → target_ip |
kv_data |
target.asset.ip |
已映射:Log: Login → target_ip |
message |
target.asset.ip |
映射的值(总共 5 个,例如 CEF: → dstIp、CEF: → target_ip、CEF: → Destination) |
target_ip |
target.asset.ip |
已合并 |
dstMac |
target.asset.mac |
已合并 |
message |
target.asset.mac |
已映射:CEF: → dstMac |
Destination |
target.hostname |
直接映射 |
Target |
target.hostname |
直接映射 |
computer_name |
target.hostname |
直接映射 |
dstHostName |
target.hostname |
直接映射 |
temp_dhost |
target.hostname |
直接映射 |
Destination |
target.ip |
已合并 |
IPv6_Address |
target.ip |
已合并 |
app_protocol |
target.ip |
已映射:CounterACT → target_ip、CounterACT → Destination |
data |
target.ip |
已映射:Target: → Destination |
dest_ip |
target.ip |
已合并 |
destination_ip |
target.ip |
已合并 |
dstIp |
target.ip |
已合并 |
dst_ip |
target.ip |
已合并 |
et_lower |
target.ip |
已映射:port bite → destination_ip,block event → target_ip |
ipv6 |
target.ip |
已映射:- → IPv6_Address |
kv_data |
target.ip |
已映射:Log: Login → target_ip |
message |
target.ip |
映射的值(总共 7 个,例如 CEF: → dst_ip、CEF: → IPv6_Address、CEF: → dstIp) |
target_ip |
target.ip |
已合并 |
dest_mac |
target.mac |
已合并 |
dstMac |
target.mac |
已合并 |
mac_address |
target.mac |
已合并 |
message |
target.mac |
已映射:CEF: → mac_address、CEF: → dstMac、CEF: → dest_mac |
destination_translated_address |
target.nat_ip |
已合并 |
message |
target.nat_ip |
已映射:CEF: → destination_translated_address |
destinationTranslatedPort |
target.nat_port |
已重命名/已映射 |
dest_port |
target.port |
直接映射 |
dpt |
target.port |
已重命名/已映射 |
dstPort |
target.port |
直接映射 |
port |
target.port |
已重命名/已映射 |
dproc |
target.process.command_line |
已重命名/已映射 |
File_name |
target.process.file.full_path |
直接映射 |
Infected_Resource |
target.process.file.full_path |
直接映射 |
Object |
target.process.file.full_path |
直接映射 |
Objekt |
target.process.file.full_path |
直接映射 |
dpid |
target.process.pid |
已重命名/已映射 |
message |
target.resource.attribute.labels |
已映射:CEF: → resource_Type_label |
resource_Type_label |
target.resource.attribute.labels |
已合并 |
request |
target.url |
直接映射 |
message |
target.user.attribute.roles |
已映射:CEF: → target_role |
target_role |
target.user.attribute.roles |
已合并 |
CustomerName |
target.user.user_display_name |
直接映射 |
temp_duser |
target.user.user_display_name |
直接映射 |
Bruker |
target.user.userid |
直接映射 |
User_value |
target.user.userid |
直接映射 |
temp_duid |
target.user.userid |
直接映射 |
username |
target.user.userid |
直接映射 |
| 不适用 | extensions.auth.type |
常量:MACHINE |
| 不适用 | metadata.event_type |
常量:USER_LOGIN |
| 不适用 | metadata.product_name |
常量:FORESCOUT EYEINSPECT |
| 不适用 | metadata.vendor_name |
常量:FORESCOUT |
| 不适用 | network.direction |
常量:INBOUND |
| 不适用 | security_result.alert_state |
常量:ALERTING |
| 不适用 | security_result.rule_name |
常量:Virtual Firewall blocking |
| 不适用 | security_result.severity |
常量:LOW |
app_protocol_src |
network.application_protocol |
从变更日志映射 |
Category" and "policy_details |
security_result.description |
从变更日志映射 |
CPU_usage", "Available_memory", "Used_memory", "Available_swap", "Used_swap |
additional.fields |
从变更日志映射 |
application_status", "Connected_clients", "EM_connection_status", "Assigned_hosts", "Engine_status", "Installed_Plugins |
additional.fields |
从变更日志映射 |
alart_id |
security_result.rule_id |
从变更日志映射 |
protocol2 |
security_result.detection_fields |
从变更日志映射 |
更新日志
需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。