Google 會運用 AI 技術將內容翻譯成你偏好的語言,但可能會出錯。
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
查詢實體
本文適用於安全營運中心 (SOC) 的管理員和分析師,他們希望使用精選資訊主頁 (預先定義的資訊主頁,可顯示各種安全用途的資訊) 監控威脅情勢和系統健康狀態。
您可以在查詢編輯器中使用這些查詢,或將其做為自訂小工具的基準。
如要瞭解如何建立及管理資訊主頁,請參閱「管理資訊主頁」。
|
資訊主頁名稱
|
說明
|
圖表名稱
|
查詢範例
|
| PCI - 警告總覽 |
集中顯示有關安全漏洞和事件的快訊和洞察資料,這些問題會影響 PCI 標準。
必要:必須建立 PCI_Assets (付款卡產業資產) 參考清單來劃定資料範圍,否則圖表不會載入。 |
依風險列出的前幾名 PCI 資產 |
graph.metadata.entity_type = "ASSET"
graph.entity.hostname in %PCI_Assets
$Hostname = graph.entity.hostname
$Risk_Score = graph.risk_score.risk_score
match:
$Hostname, $Risk_Score
order:
$Risk_Score desc
|
| 勒索軟體焦點監控 |
全面掌握所有安全工具偵測到的勒索軟體相關事件。醒目顯示近期事件、受影響的裝置和偵測來源,加速事件應變。 |
最近的勒索軟體情報來源事件 |
graph.metadata.threat[0].description = /ransom/ nocase
strings.coalesce(if(graph.entity.ip != "", graph.entity.ip, ""), if(graph.entity.url != "", graph.entity.url, ""), if($Hash != "", $Hash, "")) != ""
$IOC_Type = graph.metadata.entity_type
$Threat = graph.metadata.threat[0].description
$Hash = group(graph.entity.file.sha256,graph.entity.file.md5)
$IOC_Value = strings.coalesce(if(graph.entity.ip != "", graph.entity.ip, ""), if(graph.entity.url != "", graph.entity.url, ""), if($Hash != "", $Hash, ""))
$Date = timestamp.get_date(graph.metadata.collected_timestamp.seconds)
match:
$Date, $Threat, $IOC_Value, $IOC_Type
outcome:
$Count = count(graph.metadata.event_metadata.id)
order:
$Count desc
|
| 威脅情報總覽 |
即時和回溯追蹤頂尖威脅、IOC 和目標系統。監控風險分數、嚴重程度和指標,偵測新興基礎架構威脅。 |
高風險分數的入侵指標 |
$IOC_Type = graph.metadata.entity_type
$Risk_Score = graph.metadata.threat.risk_score
$Date = timestamp.get_date(graph.metadata.collected_timestamp.seconds)
$Hash = group(graph.entity.file.sha256,graph.entity.file.md5)
$IOC_Value = strings.coalesce(if(graph.entity.ip != "", graph.entity.ip, ""), if(graph.entity.url != "", graph.entity.url, ""), if($Hash != "", $Hash, ""))
$IOC_Value !=""
match:
$Date, $IOC_Type, $IOC_Value
outcome:
$Total_Risk_Score = math.round(avg($Risk_Score), 2)
$Count = count(graph.metadata.event_metadata.id)
order:
$Total_Risk_Score desc
|
| 健康保險流通與責任法案資訊主頁 |
即時監控《健康保險流通與責任法案》法規遵循和安全指標。可掌握 PHI 存取情形和潛在風險,確保資料機密性和完整性。 |
依風險排序的熱門資產 |
graph.metadata.entity_type = "ASSET"
graph.entity.hostname in %ePHI_assets.Hostname
$Hostname = graph.entity.hostname
$Risk_Score = graph.risk_score.risk_score
match:
$Hostname, $Risk_Score
order:
$Risk_Score desc
|
還有其他問題嗎?向社群成員和 Google SecOps 專業人員尋求答案。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2026-07-26 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["難以理解","hardToUnderstand","thumb-down"],["資訊或程式碼範例有誤","incorrectInformationOrSampleCode","thumb-down"],["缺少我需要的資訊/範例","missingTheInformationSamplesINeed","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2026-07-26 (世界標準時間)。"],[],[]]