Symantec Endpoint Protection のログを収集する

以下でサポートされています。

このドキュメントでは、Bindplane エージェントを使用して Symantec Endpoint Protection(SEP)ログを Google Security Operations に取り込む方法について説明します。

Symantec Endpoint Protection は、マルウェアの検出、侵入防止イベント、ファイアウォール アクティビティ、アプリケーションとデバイスの制御イベント、監査ログの syslog メッセージを生成するエンドポイント セキュリティ ソリューションです。パーサーは、grok パターンを使用して複数のログ形式(syslog、CEF、Windows イベントログ)からフィールドを抽出し、統合データモデル(UDM)にマッピングします。

始める前に

次の前提条件を満たしていることを確認してください。

  • Google SecOps インスタンス
  • Windows Server 2016 以降、または systemd を使用する Linux ホスト
  • Bindplane エージェントと Symantec Endpoint Protection Manager(SEPM)間のネットワーク接続
  • プロキシの背後で実行している場合は、Bindplane エージェントの要件に従ってファイアウォール ポートが開いていることを確認します
  • Symantec Endpoint Protection Manager ウェブ UI への管理者アクセス

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
    

    サービスは 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
    

    サービスが [アクティブ(実行中)] と表示されます。

その他のインストール リソース

その他のインストール オプションとトラブルシューティングについては、Bindplane エージェントのインストール ガイドをご覧ください。

syslog を取り込んで Google SecOps に送信するように Bindplane エージェントを構成する

構成ファイルを探す

  • 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/sep:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: SEP
            raw_log_field: body
    
    service:
        pipelines:
            logs/sep_to_chronicle:
                receivers:
                    - udplog
                exporters:
                    - chronicle/sep
    

構成パラメータ

各プレースホルダを次のように置き換えます。

  • レシーバーの構成:

    • 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: リージョナル エンドポイント URL:
      • 米国: malachiteingestion-pa.googleapis.com
      • ヨーロッパ: europe-malachiteingestion-pa.googleapis.com
      • アジア: asia-southeast1-malachiteingestion-pa.googleapis.com
      • 完全なリストについては、リージョン エンドポイントをご覧ください。

構成ファイルを保存する

  • 編集後、ファイルを保存します。
    • Linux: Ctrl+OEnterCtrl+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"
        

Symantec Endpoint Protection で syslog を構成する

  1. Symantec Endpoint Protection Manager のウェブ UI にログインします。
  2. [管理者] アイコンをクリックします。
  3. [View Servers] セクションを見つけて、[Servers] をクリックします。
  4. [ローカル サイト> 外部ロギングを構成] をクリックします。
  5. [Enable Transmission of Logs to a Syslog Server] チェックボックスをオンにします。
  6. 次の構成の詳細を指定します。
    • Syslog サーバー: Bindplane の IP アドレスを入力します。
    • UDP 宛先ポート: Bindplane ポート番号を入力します(例: UDP の場合は 514)。
    • ログ ファシリティ: 「Local6」と入力します。
    • [監査ログ] チェックボックスをオンにします。
    • [セキュリティ ログ] チェックボックスをオンにします。
    • [リスク] チェックボックスをオンにします。
  7. [OK] をクリックします。

UDM マッピング テーブル

ログフィールド UDM マッピング 備考
_DB_HOST target.hostname
a_record network.dns.questions.type
AccessCheckResults security_result.detection_fields
Accesses security_result.detection_fields
AccessList security_result.detection_fields
AccessMask security_result.detection_fields
AccessReason security_result.description
AccountName target.user.user_display_name
AccountType principal.user.attribute.roles
ACTION security_result.detection_fields
ACTION_TYPE security_result.action_details
ActiveProfile target.resource.name
ActivityID additional.fields
AdditionalInfo2 security_result.detection_fields
ADMIN_NAME principal.user.userid
AGENT_SECURITY_LOG_IDX metadata.product_log_id
AgentVer additional.fields
Alert security_result.detection_fields
ALERT_IDX security_result.rule_id
ALERTDATETIME security_result.first_discovered_time
ALERTENDDATETIME security_result.last_discovered_time
ALERTINSERTTIME security_result.detection_fields
AlgorithmName security_result.detection_fields
Allowedapplicationreason security_result.detection_fields
APP_NAME target.application
app_name principal.application
AppPoolID target.application
AuthenticationPackageName additional.fields
AuthenticationSetId security_result.detection_fields
AuthenticationSetName target.resource.name
BitlockerUserInputTime additional.fields
BootMenuPolicy additional.fields
BootType additional.fields
BU additional.fields
BugcheckString additional.fields
CALLER_PROCESS_ID principal.process.pid
CALLER_PROCESS_NAME principal.process.file.full_path
callerReturnAddress additional.fields
callerReturnModuleName additional.fields
Caption target.application
Category security_result.category_details
Channel security_result.about.resource.attribute.labels
CIDS_SIGN_SUB_ID additional.fields
CLIENT_USER2 principal.user.userid
Comment metadata.description
Component security_result.detection_fields
connection.ether_type security_result.about.labels
ConnectionSecurityRuleName target.resource.name
ConnectionSecurityRuleId security_result.detection_fields
CryptographicSetId security_result.detection_fields
CryptographicSetName target.resource.name
CSPEID additional.fields
DCName intermediary.hostname
Desc metadata.description
DesiredAccess security_result.detection_fields
device.last_app_connection target.asset.last_discover_time
device.wss_feature target.asset.attribute.labels
DeviceName target.resource.name
DeviceNameLength additional.fields
DeviceTime additional.fields
DeviceVersionMajor additional.fields
DeviceVersionMinor additional.fields
disposition security_result.detection_fields
dns_direction security_result.detection_fields
domain target.administrative_domain
Domain principal.administrative_domain
DOMAIN_ID target.resource.product_object_id
EDate additional.fields
EDateUTC metadata.event_timestamp
elevated_token additional.fields
EntryCount additional.fields
Error security_result.description
error security_result.detection_fields
ErrorCode security_result.description
ErrorDescription security_result.description
Event metadata.description
EVENT_DATA additional.fields
event_type metadata.product_event_type
EventData.Binary additional.fields
eventDesc metadata.description
eventInsertTime metadata.collected_timestamp
EventReceivedTime metadata.collected_timestamp
EventTime metadata.event_timestamp
EventType metadata.product_event_type
ExceptionCode security_result.detection_fields
executionPolicy security_result.rule_name
ExecutionProcessID principal.process.pid
ExecutionThreadID principal.process.product_specific_process_id
ExtensionId security_result.detection_fields
ExtensionName target.resource.name
ExtraInfoLength additional.fields
ExtraInfoString additional.fields
FailureId security_result.detection_fields
faulting_application_name principal.process.file.names
faulting_application_path principal.process.file.full_path
FaultingModuleName additional.fields
FaultingModulePath additional.fields
FaultOffset additional.fields
FILE_SIZE about.file.size
FilterID security_result.detection_fields
FinalStatus security_result.description
GPODisplayName target.resource.name
GPOFileSystemPath target.file.full_path
Group principal.resource.attribute.labels
HACK_TYPE security_result.category_details
HandleId target.resource.attribute.labels
HID_LEVEL additional.fields
HN additional.fields
host principal.hostname
Hostname principal.hostname
id metadata.product_log_id
IdleImplementation additional.fields
IdleStateCount additional.fields
ImpersonationLevel additional.fields
IntensiveProtectionLevel security_result.detection_fields
Interface security_result.detection_fields
intermediary_host intermediary.ipintermediary.hostname 値が IP アドレスの場合、intermediary.ip にマッピングされます。値がホスト名の場合、intermediary.hostname にマッピングされます。
INTRUSION_PAYLOAD_URL target.url
INTRUSION_URL target.url
IP principal.ip
IP_ADDR src.ip
IpAddress principal.ip
IpPort principal.port
KERNEL principal.platform_patch_level
KeyFilePath target.file.full_path
KeyLength additional.fields
KeyName security_result.detection_fields
KeyType security_result.detection_fields
lastUpdateTime target.resource.attribute.last_update_time
LmPackageName security_result.detection_fields
LoadOptions additional.fields
LogonGuid network.session_id
LogonProcessName target.application
LogonType extensions.auth.auth_details
MandatoryLabel target.resource.attribute.labels
MasterKeyId security_result.detection_fields
MaximumPerformancePercent additional.fields
Message metadata.description
MinimumPerformancePercent additional.fields
MinimumThrottlePercent additional.fields
Minutes target.resource.attribute.labels
NewFile target.file.full_path
NewGrp target.group.group_display_name
NewModDt target.file.last_modification_time
NewOwn additional.fields
NewPerms additional.fields
NewProcessId target.process.pid
NewProcessName target.process.file.full_path
NewSecurityDescriptor security_result.description
NewSize additional.fields
NominalFrequency principal.resource.attribute.labels
Number principal.resource.attribute.labels
NumberOfGroupPolicyObjects additional.fields
ObjectName target.resource.name
ObjectServer target.resource.attribute.labels
ObjectType target.resource.resource_type
ObjId target.resource.attribute.labels
OldFile src.file.full_path
OldGrp src.group.group_display_name
OldModDt src.file.last_modification_time
OldOwn additional.fields
OldPerms additional.fields
OldSize additional.fields
omittedFiles security_result.detection_fields
Opcode additional.fields
OpcodeValue metadata.product_event_type
Operation security_result.description
Operation additional.fields
OperationType security_result.category_details
OriginalSecurityDescriptor additional.fields
OS principal.platform
OSVER principal.platform_version
param2 security_result.detection_fields
param3 security_result.detection_fields
param4 security_result.detection_fields
PARAM_DEVICE_ID principal.hostname
PARAMETER target.file.full_path
parameters additional.fields
PARENT_SERVER_TYPE additional.fields
PerformanceImplementation additional.fields
POLNm additional.fields
prevalence security_result.detection_fields
Priority security_result.detection_fields
PrivilegeList target.resource.attribute.permissions.name
PrivilegesUsedForAccessCheck security_result.detection_fields
ProblemID additional.fields
ProcessId principal.process.pid
ProcessID target.process.pid
ProcessingMode additional.fields
ProcessingTimeInMilliseconds additional.fields
ProcessName principal.process.file.full_path
ProcName principal.process.file.names
ProcPath principal.process.file.full_path
product_event_type metadata.product_event_type
PROFILE_SERIAL_NO additional.fields
protected security_result.detection_fields
ProviderGuid metadata.product_deployment_id
ProviderName security_result.detection_fields
PuaCount additional.fields
PuaPolicyId additional.fields
PUB_KEY additional.fields
Reason additional.fields
ReasonCode additional.fields
RecordNumber metadata.product_log_id
RecoveryReason security_result.description
RecType metadata.product_event_type
RelativeTargetName target.user.user_display_name
report_id metadata.product_log_id
request additional.fields
restricted_admin_mode additional.fields
restricted_sid_count additional.fields
risks security_result.detection_fields
Rule security_result.rule_name
RuleName security_result.rule_name
RuleType additional.fields
scan_duration security_result.detection_fields
scan_state security_result.detection_fields
scan_type security_result.detection_fields
scanned_number security_result.detection_fields
ScriptType additional.fields
SecurityPackageName about.file.full_path
SEQ_ID additional.fields
Service target.application
SeverityValue security_result.severity_details
sha256 principal.process.file.sha256
ShareLocalPath target.file.full_path
ShareName target.resource.name
SITE_IDX additional.fields
skipped_files security_result.detection_fields
SourceModuleName additional.fields
SourceModuleType additional.fields
SourceName principal.application
spn1 target.resource.attribute.labels
spn2 target.resource.attribute.labels
standard_schemes security_result.detection_fields
State additional.fields
Status target.resource.attribute.labels
StopTime additional.fields
SubjectDomainName principal.administrative_domain
SubjectLogonId principal.user.userid
SubjectUserName principal.user.userid
SubjectUserSid principal.user.windows_sid
SupportInfo1 additional.fields
SupportInfo2 additional.fields
syslogServer intermediary.ipintermediary.hostname 値(IP アドレスまたはホスト名)はログのヘッダーから取得され、仲介者に関連付けられます。
TargetDomainName target.administrative_domain
TargetLogonId target.user.userid
TargetUserName target.user.userid
TargetUserSid target.user.windows_sid
TaskContentNew additional.fields
TaskName target.resource.name
TaskValue metadata.description
THREATS security_result.detection_fields
threats security_result.detection_fields
TimeDifferenceMilliseconds additional.fields
TimeSampleSeconds additional.fields
timestamp metadata.event_timestamp
TokenElevationType target.resource.attribute.labels
transaction_id metadata.product_log_id
TransitedServices security_result.detection_fields
TSId network.session_id
type security_result.threat_name
UMDFDeviceInstallBegin.version target.resource.attribute.labels
UMDFReflectorDependencyMissing.Dependency additional.fields
updateGuid target.process.product_specific_process_id
updateRevisionNumber target.resource.attribute.labels
updateTitle target.resource.name
UpdateType additional.fields
Url target.url
urlTrackingStatus security_result.detection_fields
User principal.user.userid
UserID target.user.userid
UserSid target.user.windows_sid
VAPI_NAME security_result.summary
VAST additional.fields
Version metadata.product_version
virtual_account additional.fields
VSAD additional.fields
WorkstationName additional.fields
なし metadata.log_type ログタイプは SEP にハードコードされています。
なし metadata.product_name プロダクト名は SEP にハードコードされています。
なし metadata.vendor_name ベンダー名は Symantec にハードコードされています。
COMMAND_ID event.idm.read_only_udm.additional.fields 変更履歴からマッピング
ATP_DEVICE_ID event.idm.read_only_udm.additional.fields 変更履歴からマッピング
DEVICE_INFO event.idm.read_only_udm.additional.fields 変更履歴からマッピング
pattern_idx event.idm.read_only_udm.additional.fields 変更履歴からマッピング
vrType event.idm.read_only_udm.additional.fields 変更履歴からマッピング
translation event.idm.read_only_udm.additional.fields 変更履歴からマッピング
locale event.idm.read_only_udm.additional.fields 変更履歴からマッピング
timestamp event.idm.read_only_udm.metadata.event_timestamp 変更履歴からマッピング
group_type event.idm.read_only_udm.target.group.attribute.labels 変更履歴からマッピング
group_name event.idm.read_only_udm.target.group.group_display_name 変更履歴からマッピング
deleted event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
discovered event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
virusname_idx event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
stealth event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
vID event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
removal event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
performance event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
privacy event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
dependency event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
detection_type event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
dynacat event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
catDes event.idm.read_only_udm.security_result.detection_fields 変更履歴からマッピング
virusname event.idm.read_only_udm.security_result.threat_name 変更履歴からマッピング
RemotePort event.idm.read_only_udm.target.port 変更履歴からマッピング
custom_politica_infringida event.idm.read_only_udm.additional.fields 変更履歴からマッピング
custom_incidente event.idm.read_only_udm.additional.fields 変更履歴からマッピング
connection.ether_type event.idm.read_only_udm.additional.fields 変更履歴からマッピング
feature_name event.idm.read_only_udm.additional.fields 変更履歴からマッピング
computer intermediary.hostname 変更履歴からマッピング
anvpap-srv1 intermediary.hostname 変更履歴からマッピング
SymantecServer principal.hostname 変更履歴からマッピング
Remote Host Name target.hostname 変更履歴からマッピング
Remote Port target.port 変更履歴からマッピング
Remote Host IP target.ip 変更履歴からマッピング
Local Port principal.port 変更履歴からマッピング
Remote Host MAC principal.mac 変更履歴からマッピング
ICMP network.ip_protocol 変更履歴からマッピング
Inbound network.direction 変更履歴からマッピング
Application principal.process.file.full_path 変更履歴からマッピング
Action security_result.action 変更履歴からマッピング
SHA-256 principal.process.file.sha256 変更履歴からマッピング
Size principal.process.file.size 変更履歴からマッピング
SITE_NAME" and "SOURCE additional.fields 変更履歴からマッピング
SOURCE security_result.description 変更履歴からマッピング
SCAN_ID", "CATEGORY_DESC", "CLIENT_TYPE", "DETECTION_TYPE", "HELP_VIRUS_IDX", "HPP_APP_TYPE", "IDX", "LAST_LOG_SESSION_GUID", "SITE_TYPE", "UUID", "VBIN_ID", and "VIRUS_TYPE additional.fields 変更履歴からマッピング
USER_DOMAIN_NAME target.administrative_domain 変更履歴からマッピング
COMPUTER_DOMAIN_NAME principal.administrative_domain 変更履歴からマッピング
IP_ADDR1 src.ip 変更履歴からマッピング
SOURCE_COMPUTER_NAME src.asset.hostname 変更履歴からマッピング
COMPUTER_NAME principal.asset.hostname 変更履歴からマッピング
OPERATION_SYSTEM principal.asset.platform_software.platform 変更履歴からマッピング
SERVICE_PACK principal.asset.platform_software.platform_version 変更履歴からマッピング
SOURCE_COMPUTER_IP principal.ip 変更履歴からマッピング
USER_NAME principal.user.userid 変更履歴からマッピング
BIOS_SERIALNUMBER principal.asset.hardware.serial_number 変更履歴からマッピング
ACTUALACTION security_result.action_details 変更履歴からマッピング
VIRUSNAME security_result.threat_name 変更履歴からマッピング
NOOFVIRUSES security_result.verdict_info.malicious_count 変更履歴からマッピング
SOURCE", "DESCRIPTION", "REQUESTEDACTION security_result.detection_fields 変更履歴からマッピング
CLIENT_GROUP principal.group.group_display_name 変更履歴からマッピング
downloader principal.process.file.full_path 変更履歴からマッピング
REQUESTEDACTION security_result.action_details 変更履歴からマッピング
SECONDARYACTION", "ACTUALACTION", "VIRUSNAME", and "NOOFVIRUSES security_result.detection_fields 変更履歴からマッピング
SOURCE additional.fields 変更履歴からマッピング
HPP_APP_HASH target.file.sha256 変更履歴からマッピング
HPP_APP_NAME target.file.names 変更履歴からマッピング
FILEPATH target.file.full_path 変更履歴からマッピング
CLIENT_GROUP target.user.group_identifiers 変更履歴からマッピング
target_file_name" from "target.file.full_path target.file.names 変更履歴からマッピング
security_result.action BLOCK 変更履歴からマッピング
type", "utility-sub-type", "lang", "service-sandbox-type", "mojo-platform-channel-handle", "field-trial-handle", "disable-features security_result.detection_fields 変更履歴からマッピング
target_arguments read_only_udm.additional.fields 変更履歴からマッピング
user-data-dir sec_result.about.file.full_path 変更履歴からマッピング
security-realm security_result.summary 変更履歴からマッピング
startup-url principal.url 変更履歴からマッピング
source_ip target.ip 変更履歴からマッピング
action_word security_result.action_details 変更履歴からマッピング
payload.domain_name principal.administrative_domain 変更履歴からマッピング
Applicationtype principal.resource.attribute.labels 変更履歴からマッピング
mail target.user.email_addresses 変更履歴からマッピング
server_name_1 principal.hostname 変更履歴からマッピング
computer principal.hostname 変更履歴からマッピング
event_description metadata.description 変更履歴からマッピング
EventDescription metadata.description 変更履歴からマッピング
LocalHostIP","IPAddress","source_ip principal.ip 変更履歴からマッピング
LocalHostMAC principal.mac 変更履歴からマッピング
guid principal.asset.asset_id 変更履歴からマッピング
DeviceID principal.resource.product_object_id 変更履歴からマッピング
Filesize target.file.size 変更履歴からマッピング
SHA256 target.file.sha256 変更履歴からマッピング
User1 principal.user.userid 変更履歴からマッピング
file_path target.file.full_path 変更履歴からマッピング
GroupName principal.group.group_display_name 変更履歴からマッピング
Begin vulnerabilities.scan_start_time 変更履歴からマッピング
EndTime vulnerabilities.scan_end_time 変更履歴からマッピング
ScanID principal.process.product_specific_process_id 変更履歴からマッピング
inter_host intermediary.hostname 変更履歴からマッピング
inter_ip intermediary.ip 変更履歴からマッピング
ActionType additional.fields 変更履歴からマッピング
CIDS Signature ID target.resource.attribute.labels 変更履歴からマッピング
CIDS Signature SubID target.resource.attribute.labels 変更履歴からマッピング
CIDS Signature string target.resource.attribute.labels 変更履歴からマッピング
Intrusion URL principal.url 変更履歴からマッピング
User Name principal.user.userid 変更履歴からマッピング
Actual action security_result.action_details 変更履歴からマッピング
Application hash target.file.sha256 変更履歴からマッピング
Application name target.application 変更履歴からマッピング
Application type target.resource.attribute.labels 変更履歴からマッピング
Certificate issuer network.tls.server.certificate.issuer 変更履歴からマッピング
Certificate serial number network.tls.server.certificate.serial 変更履歴からマッピング
Certificate signer network.tls.server.certificate.subject 変更履歴からマッピング
Certificate thumbprint network.tls.server.certificate.sha256 変更履歴からマッピング
Secondary action target.resource.attribute.labels 変更履歴からマッピング
First Seen security_result.detection_fields 変更履歴からマッピング
Risk Name security_result.detection_fields 変更履歴からマッピング
Risk Type security_result.detection_fields 変更履歴からマッピング
Permitted application reason security_result.detection_fields 変更履歴からマッピング
Company name target.user.company_name 変更履歴からマッピング
Computer name principal.hostname 変更履歴からマッピング
Server Name principal.asset.network_domain 変更履歴からマッピング
Confidence security_result.description 変更履歴からマッピング
Detection Type security_result.summary 変更履歴からマッピング
Group Name principal.group.group_display_name 変更履歴からマッピング
Risk Level security_result.severity_details 変更履歴からマッピング
File size (bytes) target.file.size 変更履歴からマッピング
eventDescription metadata.description 変更履歴からマッピング
hostName principal.hostname 変更履歴からマッピング
machineDomainName principal.administrative_domain 変更履歴からマッピング
domainName target.administrative_domain 変更履歴からマッピング
serverName intermediary.hostname 変更履歴からマッピング
userName principal.user.userid 変更履歴からマッピング
siteName read_only_udm.additional.fields 変更履歴からマッピング
hostName target.hostname 変更履歴からマッピング
machineDomainName target.administrative_domain 変更履歴からマッピング
domainName principal.administrative_domain 変更履歴からマッピング
serverName principal.hostname 変更履歴からマッピング

変更履歴

このパーサーの変更ログを表示する

さらにサポートが必要な場合 コミュニティ メンバーや Google SecOps のプロフェッショナルから回答を得ることができます。