Microsoft AZ-500: 安全態勢管理與治理 — 學習指南

屬於 Microsoft Azure Security Engineer Associate AZ-500 — 學習指南. 使用經過驗證的解答練習: Microsoft 考試中心, 或參加限時模擬考試: ExamRoll.io.

策略驅動的治理與登陸區

Azure Policy 是針對雲端漂移的預防性與修正性護欄系統。關鍵要素:

強制在 Windows VM 上安裝反惡意軟體擴充功能的策略骨架範例:

{
  "properties": {
    "displayName": "Deploy antimalware on Windows VMs",
    "policyType": "Custom",
    "mode": "Indexed",
    "parameters": {},
    "policyRule": {
      "if": {
        "allOf": [
          { "field": "type", "equals": "Microsoft.Compute/virtualMachines" },
          { "field": "Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration", "exists": "true" }
        ]
      },
      "then": {
        "effect": "DeployIfNotExists",
        "details": {
          "type": "Microsoft.Compute/virtualMachines/extensions",
          "name": "IaaSAntimalware",
          "roleDefinitionIds": ["/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c"],
          "deploymentScope": "resourceGroup",
          "existenceCondition": { "field": "name", "equals": "IaaSAntimalware" },
          "deployment": { "properties": { "mode": "incremental", "template": { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "resources": [] } } }
        }
      }
    }
  }
}

登陸區治理組織了繼承與職責分離:

對於舊有的藍圖需求,可採用「策略即程式碼」(policy-as-code) 的方法,搭配 ARM/Bicep、Template Specs 與方案指派,以大規模實現類似藍圖的一致性部署。

安全性盤點、雲端應用程式、資料治理與稽核

大規模的盤點與合規性可透過 Azure Resource Graph (ARG) 與 Policy 合規性報告來達成。ARG 查詢能為數百萬個資源提供近乎即時的狀態檢視:

securityresources
| where type =~ 'microsoft.security/assessments'
| where properties.status.code == 'Unhealthy'
| summarize unhealthy=count() by tostring(properties.displayName)
| order by unhealthy desc

將資源狀態與標籤結合,以根據資料敏感度進行分類處理:

resources
| where type == 'microsoft.compute/virtualmachines'
| project id, name, resourceGroup, subscriptionId, dataSensitivity = tostring(tags['DataSensitivity'])
| join kind=leftouter (
  securityresources
  | where type =~ 'microsoft.security/assessments'
  | where properties.status.code == 'Unhealthy'
  | summarize issues=count() by tolower(tostring(properties.resourceDetails.Id))
) on $left.id == $right['tolower_tostring_properties_resourceDetails_Id']
| project name, dataSensitivity, issues = coalesce(issues, 0)
| order by issues desc

Defender for Cloud Apps (MDCA) 可治理 SaaS 風險:

Microsoft Purview 將治理範圍擴展至資料:

稽核軌跡必須具備防竄改性且完整:

實務問題情境

全球零售商 Contoso 正在導入兩個新的生產環境訂用帳戶,必須標準化其安全狀態、達成 Azure Security Benchmark 合規性,並保留不可變的日誌七年,同時要最小化維運上的摩擦。

  1. 在管理群組層級建立治理
  1. 指派安全性計畫與 Defender for Cloud 方案
  1. 實作政策驅動的自動化與豁免
  1. 設定由 Secure Score 驅動的修復工作流程
  1. 集中化具不可變性的稽核日誌
  1. 治理 SaaS 使用與出口風險
  1. 透過 Purview 嵌入資料治理

金鑰管理、密碼學與憑證 · 所有領域 · Microsoft Sentinel 與安全營運

練習這些題目 → · 在 ExamRoll.io 上限時練習 →

Pass the whole exam — not just this question

You found this answer. Get every verified question and explanation in one place, and save hours of prep. Free to start.

通過考試 →

瀏覽 Microsoft →

Related guides

一站式存取

一份訂閱。所有考試。

每個方案都可無限存取答案搜尋、練習測驗、AI 解釋和完整的資源庫 — 支援 20 多種語言。

每月
24.87
Just €0.83/day
包含所有內容:
  • 無限答案搜尋
  • 無限練習測驗
  • AI 驅動的解釋
  • 完整資源庫
  • 20 多種語言
  • 每週內容更新
  • 獎勵與推薦
  • 優先支援
開始免費試用

無需信用卡*

最佳價值
12 個月
179.87
Just €0.49/daySave 40%
包含所有內容:
  • 無限答案搜尋
  • 無限練習測驗
  • AI 驅動的解釋
  • 完整資源庫
  • 20 多種語言
  • 每週內容更新
  • 獎勵與推薦
  • 優先支援
開始免費試用

無需信用卡*

✓ 包含免費方案 · ✓ 隨時取消 · ✓ 所有方案解鎖完整產品