Microsoft Azure · security

Azure Security Engineer AZ-500

Master Azure security: Conditional Access, PIM, managed identities, Azure Firewall, NSG, DDoS Protection, Key Vault, disk encryption, SQL Advanced Threat Protection, Defender for Cloud, Microsoft Sentinel KQL analytics, and SOAR playbooks. Covers all AZ-500 exam domains.

7Modules
40 hoursDuration
advancedLevel
Exam fact Details
Exam codeAZ-500
Full nameMicrosoft Azure Security Engineer Associate
Questions40–60 (mix of MCQ, case studies, drag-and-drop)
Passing score700 / 1000
Duration120 minutes
Price$165 USD
PrerequisitesAZ-104 recommended, 1+ year hands-on Azure security experience
RenewalFree annual online assessment (no re-exam required)

Exam domain weights

Domain 1 — Manage Identity and Access 25–30%
Domain 2 — Secure Networking 20–25%
Domain 3 — Secure Compute, Storage & Databases 20–25%
Domain 4 — Manage Security Operations 25–30%

Course modules

Module 13 lessons
Identity and Access — Microsoft Entra ID Foundations

Understand the identity layer that underpins every AZ-500 domain. Learn the difference between Microsoft Entra ID Free, P1, and P2, and when each feature unlocks. Covers hybrid identity with Entra Connect, cloud-only accounts, guest (B2B) vs consumer (B2C) identities, and the administrative units model.

Entra ID tiers (Free/P1/P2) Entra Connect / PHS / PTA / Federation B2B vs B2C identities Administrative Units Service principals vs managed identities
📖 Read in-depth chapter
Lesson 1.1 Entra ID tiers and what unlocks per SKU

Entra ID has three commercial tiers (Free, P1, P2) and the exam tests which security feature lives in which tier — get this wrong on a design question and you propose a control the customer can't afford.

Key concepts
  • Free tier: basic directory, SSO to thousands of SaaS apps, security defaults (mandatory MFA for admins via the simple toggle). No Conditional Access, no PIM, no Identity Protection.
  • P1 (Entra ID Premium P1): Conditional Access, group-based licensing, self-service password reset (SSPR), MFA Server, dynamic groups, application proxy. The minimum for most enterprise scenarios.
  • P2: P1 + Privileged Identity Management (PIM), Identity Protection (sign-in risk + user risk policies), access reviews. Required for any "just in time admin" or "risk-based MFA" design.
  • Per-user vs per-feature licensing: P1/P2 licenses must be assigned to users who BENEFIT from the feature, not just those who configure it. CA policies require P1 on all targeted users; PIM requires P2 on all eligible users.
  • Microsoft 365 vs Entra ID bundles: Microsoft 365 E3 includes Entra ID P1; E5 includes P2. Many customers already have Entra ID P2 through M365 E5 without realising it.
Concrete example

A customer wants Conditional Access + PIM + Identity Protection. The exam question gives Entra ID Free as the starting state. Right answer: upgrade to Entra ID Premium P2, assigned to every user covered by these features. Just P1 would not unlock PIM or Identity Protection. M365 E5 also satisfies the requirement implicitly.

Key takeaway: Free = directory only. P1 = Conditional Access & SSPR. P2 = PIM + Identity Protection. License must cover the user, not the admin. Check whether M365 E5 already gives them P2.
⚡ Mini-quiz
Drill Entra ID tier-feature mapping → study mode (10 questions).
Lesson 1.2 Hybrid identity sync and Entra Connect

Hybrid identity is the bridge from on-prem Active Directory to Entra ID. Three modes (PHS / PTA / Federation) have distinct security postures. AZ-500 tests both the choice and the hardening pattern around Entra Connect.

Key concepts
  • PHS (Password Hash Sync): hashes synced to Entra ID, auth happens in Azure. Simplest, default, supports leaked-credential detection. Works even if on-prem is offline.
  • PTA (Pass-Through Auth): agents on-prem validate passwords against AD. Requires multiple agents for HA. Use when compliance forbids password hashes leaving on-prem.
  • Federation (ADFS): Entra delegates auth to on-prem ADFS or SAML IdP. Most complex, most fragile, most operationally expensive. Only when smart cards / third-party MFA / specific claims are non-negotiable.
  • Seamless SSO: Kerberos-based no-prompt SSO for domain-joined laptops. Add to PHS or PTA. Federation has SSO inherent.
  • Entra Connect security: the AAD Connect server is a Tier 0 admin asset — compromising it compromises every synced identity. Treat like a domain controller. Isolate, harden, audit.
  • Sync filters: never sync everything. Filter out service accounts, disabled accounts, IT-staff break-glass accounts. Service accounts especially — they often have weak passwords that ride the sync into Entra ID.
Concrete example

An auditor flags an unsynced break-glass admin account in Entra ID with a 30-character password and PIM-only Owner role. Correct design: this account stays cloud-only by design — it's the emergency-access account if hybrid sync breaks. Two cloud-only break-glass accounts, exempt from CA, exempt from MFA, with very long passphrases and 30-day rotation. The rest of the directory syncs from on-prem via PHS with Seamless SSO.

Key takeaway: PHS for default + DR resilience; PTA when policy demands on-prem validation; Federation only when forced. Always provision two cloud-only break-glass accounts exempt from CA — they're the recovery path if sync or CA breaks the org.
⚡ Mini-quiz
Practise hybrid sync + break-glass scenarios → quick quiz (5 questions).
Lesson 1.3 Service principals, managed identities, and admin units

Non-human identities (service principals + managed identities) outnumber human accounts in any mature Azure tenant. AZ-500 tests how to design, scope, and audit them — getting these wrong is the most common root cause in cloud breach reports.

Key concepts
  • Service principal: an Entra ID identity for an app or automation. Has a client secret or certificate. The CI/CD pipeline default. Secret rotation is your job.
  • Managed identity: service principal whose secret is managed by Azure. System-assigned (1:1 with a resource) or user-assigned (standalone, shareable). No secret to rotate, no secret to leak.
  • Federated identity credentials: let an external workload (GitHub Actions, AWS, Kubernetes via OIDC) trade its identity for Entra tokens — no Azure secret stored externally. The modern preferred CI/CD pattern.
  • Service principal hygiene: regularly review unused SPs, secrets approaching expiry, secrets older than 1 year, secrets with broad scopes. Microsoft Defender for Cloud flags risky SPs.
  • Administrative Units (AUs): sub-divide the tenant for scoped admin. A helpdesk admin assigned User Administrator on an AU can reset passwords ONLY for users in that AU. Avoids "all-or-nothing" admin grants.
  • Workload Identity Federation: the formal name for the federated identity credentials pattern. Works for Functions / Container Apps / Logic Apps cross-cloud too.
Concrete example

An audit finds 200 service principals in the tenant, half unused for 12+ months, several with very long-lived secrets. Remediation: enable Entra ID app management reviews, automate stale-SP cleanup via a Logic App, migrate active SPs to managed identities where possible (every Azure-hosted workload), and for the few remaining external CI/CD pipelines, switch to Workload Identity Federation (GitHub Actions OIDC → Entra). End state: zero stored secrets, fewer service principals, audit-trail clean.

Key takeaway: managed identities > service principals with secrets > service principals with certs. Workload Identity Federation for external CI/CD. Admin Units for scoped delegation. Review stale SPs regularly.
⚡ Mini-quiz
Drill SP / MI / federated-credentials scenarios → study mode (10 questions).
Module 23 lessons
Conditional Access, PIM, and RBAC

Master the access control triad that dominates the exam. Build Conditional Access policies that enforce MFA based on sign-in risk, location, and device compliance. Configure Privileged Identity Management (PIM) for just-in-time role activation with approval workflows and access reviews. Design RBAC with custom roles and least-privilege assignments at management group, subscription, resource group, and resource scope.

Conditional Access named locations + device filters PIM eligible vs active assignments PIM access reviews Custom RBAC roles Identity Protection — sign-in risk / user risk policies Entitlement management
📖 Read in-depth chapter
Lesson 2.1 Conditional Access — assignments and grant controls

Conditional Access (CA) is the policy engine that decides "given these signals, does this sign-in succeed and under what conditions". It's the most-tested AZ-500 control by far — every other security feature relies on CA being designed correctly.

Key concepts
  • Assignments (who/where/what): users + groups (with exclusions for break-glass), cloud apps (specific apps or all), conditions (sign-in risk, user risk, device platform, locations, client apps, device filters).
  • Access controls — Grant: block access, require MFA, require compliant device, require Hybrid Entra-joined device, require approved client app, require app protection policy, require ToS acceptance. Multiple controls combine with AND (default) or OR.
  • Access controls — Session: sign-in frequency, persistent browser session, app-enforced restrictions, Defender for Cloud Apps controls (Conditional Access App Control with reverse proxy).
  • Named locations: trusted IP ranges + Entra-detected countries. Pair with "block from countries we don't operate in" for cheap external-attack mitigation.
  • Report-only mode: evaluate policy without enforcement — see what WOULD be blocked, fix exceptions, then enable. Always use report-only mode for any new policy that targets > 50 users.
  • Combined exclusions: always exclude break-glass accounts (Lesson 1.2), the Entra Connect sync account, and emergency-access roles. Without these exclusions, you can lock yourself out of the tenant.
Concrete example

Design: "external admin sign-ins must use MFA + a compliant device". Policy: assignments = role-includes "Global Administrator / User Administrator / Privileged Role Administrator", conditions = locations exclude trusted networks (so internal admins skip the prompt), exclusions = break-glass accounts. Grant: require MFA + require compliant device, AND. Deploy in report-only mode for 7 days, review sign-in logs for exceptions (e.g., the build server's admin SP), add exclusions, then flip to On.

Key takeaway: assignment + conditions select WHEN policy applies, access controls dictate WHAT it requires. Report-only mode before enforce. Always exclude break-glass + sync identities.
⚡ Mini-quiz
Drill CA policy-design scenarios → study mode (10 questions).
Lesson 2.2 PIM — eligible roles, approvals, and access reviews

PIM turns standing privileged access into just-in-time elevation with approval and audit. AZ-500 expects you to design PIM for both Entra ID directory roles AND Azure RBAC roles — they're configured separately.

Key concepts
  • Eligible vs Active: eligible users can ACTIVATE the role for a configured duration with MFA + justification + (optional) approval. Active assignments work like classic role grants. Make 90%+ of admin assignments eligible.
  • Activation requirements: max duration (1 hour default), MFA on activation, justification (free text), ticket number reference, approval (1+ approvers from a configured list).
  • Access reviews: recurring reviews where reviewers attest a user still needs a role. Auto-removes non-responders or denied users. Configure quarterly for high-privilege Entra ID roles, semi-annually for Azure RBAC at subscription scope.
  • PIM for Groups: apply PIM to ANY Entra ID group — not just role-assignable groups. The group's permissions (license, app access, RBAC) become just-in-time.
  • Alerts: built-in alerts for "too many admins activated at once", "role activated unusually", "admin activation outside business hours". Tune to your tenant's normal pattern.
  • PIM for Azure RBAC: separately enable per subscription / RG / resource. The directory-role and Azure-role PIM systems are distinct — being eligible for Owner at the management group doesn't grant directory roles and vice versa.
Concrete example

A regulated environment removes standing Global Administrator: convert every existing GA to PIM Eligible, set activation max 4 hours with MFA + approval (2 approvers) + ticket number required, configure quarterly access review with the manager-of as reviewer and auto-remove on no-response. Same for subscription-scoped Owner roles via PIM for Azure resources. Build-process service principal stays as a constrained role-assignable group with PIM enabled so even its own role can JIT-elevate.

Key takeaway: default to Eligible, demand MFA + approval on activation, run quarterly access reviews. Two PIM systems: Entra ID directory roles and Azure RBAC — configure both.
⚡ Mini-quiz
Practise PIM-design scenarios → quick quiz (5 questions).
Lesson 2.3 Identity Protection and risk-based policies

Identity Protection adds Microsoft-curated risk signals (impossible travel, anonymous IP, leaked credentials, unfamiliar sign-in properties) and lets you trigger CA controls based on them. Requires Entra ID P2.

Key concepts
  • Sign-in risk: Microsoft's confidence that THIS sign-in is compromised. Levels: low / medium / high. Signals: unfamiliar location, anonymous IP, atypical travel, malware-linked IP. Real-time evaluation.
  • User risk: Microsoft's confidence that THIS user account is compromised over time. Driven by leaked credentials, suspicious activity history. Persists across sessions.
  • Risk policies (legacy vs CA-based): legacy risk policies live in Identity Protection itself; modern best practice is CA policies that consume risk as a CONDITION and apply grant controls. CA-based is more flexible.
  • Sign-in risk policies: if sign-in risk > medium → require MFA. If risk = high → require password change. Common pattern.
  • User risk policies: if user risk > medium → block sign-in until password reset + MFA. Forces compromise remediation.
  • Risky users dashboard: shows all users with elevated risk + remediation status. Investigation pane links sign-ins, detected risk events, and resolution actions.
Concrete example

A bank wants: (1) require MFA whenever sign-in risk is medium or high, (2) block users with high user-risk until reset. CA policies: policy A — assignments = all users (except break-glass), conditions = sign-in risk includes Medium + High, grant = require MFA. Policy B — assignments = all users (except break-glass), conditions = user risk = High, grant = block access (forces helpdesk-led reset). Pair with an automated Logic App that emails the user + manager on user-risk = High.

Key takeaway: Identity Protection is a P2 feature feeding risk signals to CA. Sign-in risk acts per-sign-in; user risk acts persistently. Use CA-based risk policies, not the legacy Identity Protection toggles.
⚡ Mini-quiz
Drill Identity Protection scenarios → study mode (10 questions).
Module 33 lessons
Secure Networking — Azure Firewall, NSG, and DDoS

Protect Azure network perimeters and internal traffic flows. Compare Azure Firewall Standard vs Premium (IDPS, TLS inspection), configure Network Security Groups with service tags and Application Security Groups (ASG), and deploy DDoS Protection Standard with mitigation metrics. Understand when to use Azure Bastion vs JIT VM access, and when Private Endpoints are mandatory.

Azure Firewall Standard vs Premium IDPS and TLS inspection (Premium) NSG service tags + ASG DDoS Protection Basic vs Standard Azure Bastion Private Endpoints vs Service Endpoints WAF on App Gateway vs Front Door Forced tunneling + UDR
📖 Read in-depth chapter
Lesson 3.1 Azure Firewall — Standard vs Premium, policy hierarchy

Azure Firewall is the managed L3-L7 firewall for VNet traffic. Two SKUs: Standard for basic filtering, Premium when you need IDPS or TLS inspection. AZ-500 asks both "which SKU fits this requirement" and "how should this rule be structured".

Key concepts
  • Standard SKU: L3-L7 filtering, FQDN tags, network rules, application rules, NAT rules. Threat intelligence-based deny in alert or deny mode. No TLS inspection, no IDPS.
  • Premium SKU: Standard + TLS inspection (cert decryption), IDPS (signature + rule engine), URL filtering, web categories. Needed for any "inspect payload" requirement.
  • Firewall Policy: a separate resource that holds rules. Policies inherit hierarchically — parent policy at the org / hub, child policies at workload firewalls. Use to standardise global rules while delegating workload-specific exceptions.
  • Rule collections: NAT (highest priority, DNAT inbound), Network (L3-L4), Application (L7 FQDN + tags). Processed in priority order within each collection type.
  • FQDN tags vs Service tags: service tags (NSG-style) for known Microsoft IP ranges. FQDN tags (firewall-specific) for known FQDN endpoints like WindowsUpdate, AzureKubernetesService, OfficeApplications.
  • Forced tunneling: point Azure Firewall's egress through an on-prem appliance via a 0.0.0.0/0 UDR on its subnet. Used when corporate policy requires all egress to be inspected on-prem.
Concrete example

A regulated workload needs L7 inspection of egress to public APIs with TLS decryption and content filtering. Choice: Azure Firewall Premium with Firewall Policy at the hub VNet. Enable TLS inspection (requires a CMK-protected intermediate cert from the org's PKI), IDPS in deny mode, URL filtering with allowed categories. Application rules for permitted FQDNs; everything else implicit deny. Parent policy at the org tier; workload policies inherit and add allow-list exceptions.

Key takeaway: Standard for basic filtering, Premium when you need IDPS / TLS inspection / URL filtering. Firewall Policy hierarchy gives parent/child reuse. NAT > Network > Application rule processing order.
⚡ Mini-quiz
Drill Firewall SKU and policy scenarios → study mode (10 questions).
Lesson 3.2 NSGs, ASGs, and Private Endpoints

NSGs filter packets at the subnet / NIC boundary. ASGs make rules intent-based. Private endpoints take PaaS services off the public internet. The trio is what most "secure this VNet" exam questions actually test.

Key concepts
  • NSG rule priority + direction: lowest priority wins per direction. Default rules at 65000-65500 are immutable (allow intra-VNet, allow LB probes, deny all else inbound; allow VNet→Internet outbound, deny otherwise).
  • Service tags: Microsoft-maintained IP groups (Internet, AzureLoadBalancer, Storage.EastUS, etc.). Use instead of hard-coded CIDRs — they auto-update as services scale.
  • Application Security Groups (ASG): tag VMs/NICs with an ASG name and reference the ASG as source/destination in NSG rules. "Allow web-tier to talk to data-tier" is one rule, not a CIDR list that breaks on scale-out.
  • NSG attachment: at NIC, at subnet, or both. When both apply, traffic must be allowed at BOTH layers. Subnet-level is the scale-out pattern.
  • Service Endpoints (legacy): route subnet → PaaS over the Microsoft backbone, but the PaaS keeps its public endpoint. Older approach.
  • Private Endpoints (modern): PaaS gets a private IP in your subnet, pairs with a Private DNS zone. Disable the PaaS public endpoint entirely. The AZ-500 default for any PaaS-to-VNet integration.
Concrete example

A 3-tier app: tag VMs with ASGs asg-web / asg-app / asg-db. NSG (subnet-level): priority 100 inbound — allow Internet → asg-web on 443; priority 110 inbound — allow asg-web → asg-app on 8080; priority 120 inbound — allow asg-app → asg-db on 1433; priority 4096 inbound — deny all else. SQL Server data plane via Private Endpoint in asg-db's subnet, public endpoint disabled. Private DNS zone linked to the VNet.

Key takeaway: NSGs filter packets, ASGs make rules intent-based, Private Endpoints remove PaaS public exposure. Subnet-level NSG + ASG references is the scale-friendly pattern.
⚡ Mini-quiz
Practise NSG / ASG / Private Endpoint scenarios → quick quiz (5 questions).
Lesson 3.3 DDoS Protection, Bastion, and WAF

Three more secure-networking controls that round out perimeter design: DDoS Protection for volumetric attacks, Bastion for SSH/RDP without exposed VMs, WAF for L7 application-layer attacks.

Key concepts
  • DDoS Protection Basic: free, always-on for every Azure IP. Protects the Azure platform but doesn't give you tenant-specific tuning or attack metrics.
  • DDoS Protection Standard (Network / IP): protects your public IPs with custom tuning, attack-time metrics, cost-protection guarantee (Azure refunds scale-out costs incurred during an attack), DDoS Rapid Response support. Per-VNet (Network plan) or per-IP (IP plan). Pricey — only justify for production with internet exposure.
  • Azure Bastion: PaaS jump-host that brokers RDP/SSH over the browser. No public IP on the target VM, no inbound RDP/SSH NSG rule needed. SKU tiers: Basic, Standard (shareable links, IP-based connection), Premium (session recording).
  • Just-In-Time VM access (Defender for Cloud): alternative to Bastion — opens RDP/SSH NSG rule for a configured window on request, auto-closes. Use when you need direct VM IP access AND can't or don't want to deploy Bastion.
  • Web Application Firewall (WAF): two homes — on Application Gateway (regional, in-VNet) or on Front Door (global edge). Both run the OWASP Core Rule Set. Front Door WAF runs at Microsoft edge POPs — closer to attackers, blocks earlier.
  • WAF modes: Detection (logs only) and Prevention (blocks). Always start in Detection to find false positives, then promote. Custom rules for rate limiting per source IP.
Concrete example

A SaaS startup deploys to Azure with global users. Design: Azure Front Door Premium in front with WAF in Prevention mode + custom 100 req/min rate-limit per IP. The two regional App Service backends sit behind App Gateway (no WAF on the inner gateway). DDoS Protection Standard (IP plan) on the Front Door public IPs (cost-justified by the customer-facing exposure). Admin access via Azure Bastion Standard in the hub VNet — no public RDP/SSH anywhere.

Key takeaway: DDoS Protection Standard only when justified by production exposure. Bastion or JIT for admin access — no public RDP/SSH on production VMs. WAF on Front Door (global) for edge protection; WAF on App Gateway when traffic terminates regionally.
⚡ Mini-quiz
Drill DDoS / Bastion / WAF scenarios → study mode (10 questions).
Module 43 lessons
Azure Key Vault, Disk Encryption, and Storage Security

Secure secrets, keys, and certificates at rest and in transit. Configure Key Vault with soft-delete and purge protection, choose between RBAC and access policy models, and integrate customer-managed keys (CMK) with Storage and SQL. Compare Azure Disk Encryption (ADE using BitLocker/DM-Crypt) with SSE + CMK. Apply SAS tokens, storage account firewall rules, immutable storage, and private endpoint to blob and file shares.

Key Vault soft-delete + purge protection Key Vault RBAC vs access policies HSM-backed keys (Premium tier) ADE vs SSE + CMK SAS tokens (account / service / user delegation) Immutable storage (WORM) Storage account firewall + private endpoint
📖 Read in-depth chapter
Lesson 4.1 Key Vault — tiers, soft-delete, access models

Key Vault holds the secrets, keys, and certificates that the rest of your security architecture depends on. Losing Key Vault means losing access to encrypted data. AZ-500 tests recoverability features (soft-delete, purge protection), tier choice (Standard vs Premium HSM), and the two access models (RBAC vs access policies).

Key concepts
  • Standard vs Premium: Standard uses software-protected keys. Premium adds HSM-backed keys (FIPS 140-2 Level 2 hardware). Required for some compliance regimes (PCI, FedRAMP High). HSM-backed keys are slightly slower for operations but the difference is rarely material.
  • Soft-delete: deleted keys/secrets stay recoverable for 7-90 days. Default on, can't be disabled on new vaults. Critical for ransomware recovery.
  • Purge protection: blocks PERMANENT delete during the soft-delete window — even an Owner can't bypass. Required when storing CMKs for Storage / SQL because losing a CMK before its dependent data is migrated = permanent data loss.
  • Access policy model (legacy): per-vault list of principal → permission set (keys/secrets/certs read/write/etc.). Awkward at scale, no centralised audit, doesn't integrate with PIM.
  • RBAC model (modern): standard Azure RBAC roles applied at the vault scope (or below — secret/key/cert level). Inherits like all RBAC, audits via Activity Log, supports PIM. Switch new vaults to RBAC by default; migrate old vaults when feasible.
  • Backup and BYOK: Premium vaults support customer-supplied HSM keys (BYOK) via the secure key-transfer ceremony. Backups are encrypted exports tied to the source region — restore only into the same region's HSM.
Concrete example

A regulated workload needs HSM-backed CMK for SQL TDE and Storage SSE. Design: Key Vault Premium with soft-delete enabled (90 days) + purge protection ON. Switch to RBAC access model. SQL Server and Storage Account both have system-assigned managed identities; grant each the Key Vault Crypto Service Encryption User role at the vault scope. Operations team has Key Vault Reader only — secret CRUD requires PIM elevation to Key Vault Secrets Officer.

Key takeaway: Premium for HSM compliance. Always soft-delete + purge protection on CMK-holding vaults. RBAC over access policies. Grant data-plane roles to managed identities, not service principals with secrets.
⚡ Mini-quiz
Drill Key Vault tier / soft-delete / RBAC scenarios → study mode (10 questions).
Lesson 4.2 Disk encryption — SSE, ADE, and CMK

Three overlapping disk-encryption stories on Azure: Storage Service Encryption (SSE — automatic), Customer-Managed Keys for SSE, and Azure Disk Encryption (ADE — BitLocker/DM-Crypt inside the VM). The exam asks both about distinctions and about combinations.

Key concepts
  • Storage Service Encryption (SSE): ON by default for every managed disk, blob, file share. Microsoft-managed key by default. Encryption at rest is free, automatic, transparent.
  • Customer-Managed Keys (CMK): replace the platform key with one in YOUR Key Vault. Required when compliance demands key custody. Disk encryption sets pair a CMK with the disks that use it; rotating the key rotates encryption for all linked disks.
  • Azure Disk Encryption (ADE): BitLocker (Windows) or DM-Crypt (Linux) INSIDE the guest OS. Key stored in Key Vault, unlocked at boot. Targets specific compliance regimes that mandate OS-level encryption.
  • ADE vs SSE+CMK: they compose. SSE encrypts the underlying physical storage; ADE encrypts at the OS layer too. Both at once = double-encrypted. ADE is rarely needed if SSE+CMK satisfies the requirement.
  • Double Encryption at Rest: for ultra-regulated workloads, enable double encryption — two separate encryption layers (platform key + CMK) on the same disk. Pricier and slower; only justify when compliance demands.
  • Confidential VMs / Confidential Disk Encryption: newer pattern using AMD SEV-SNP or Intel TDX for memory + disk encryption with hardware attestation. Bleeding-edge but appears on newer AZ-500 questions.
Concrete example

A regulated workload needs encryption keys held by the org, but no requirement for guest-OS encryption. Choice: SSE with Customer-Managed Keys. Create a Key Vault Premium with HSM-backed key, set up a disk encryption set pointing at that key. Apply the disk encryption set to the VM's OS and data disks at provision time. The key rotates quarterly via Azure Automation. ADE would add operational overhead with no compliance benefit here.

Key takeaway: SSE is always-on. CMK satisfies "we want to hold the key". ADE adds guest-OS encryption when compliance demands it. Double encryption only when explicitly required. Confidential Compute for cutting-edge attestation.
⚡ Mini-quiz
Practise encryption-layer decisions → quick quiz (5 questions).
Lesson 4.3 Storage security — SAS, firewall, immutability

Securing storage accounts has four layers: identity-based access (RBAC + managed identities), key-based access (Shared Key + SAS), network controls (firewall + private endpoints), and immutability for compliance.

Key concepts
  • Shared Key vs SAS: the two access keys per account grant full control — never embed in clients. SAS tokens are time-bounded, scope-limited URL signatures. Three types: account SAS, service SAS, user-delegation SAS (signed by Entra ID token, the modern preferred form).
  • RBAC on data plane: roles like Storage Blob Data Reader, Storage Blob Data Contributor. SEPARATE from management-plane roles (Storage Account Contributor can manage the account but NOT read blobs). Always assign data-plane roles to managed identities for application access.
  • Storage firewall: set Public access to "Selected networks", allow specific IP CIDRs + subnet rules (subnet must have Storage service endpoint enabled). Trusted Microsoft Services exception lets Azure Monitor / Backup still reach the account.
  • Private endpoint: the modern preferred way. Storage gets a private IP in your subnet, pair with Private DNS zone privatelink.blob.core.windows.net. Disable public endpoint entirely.
  • Immutability (WORM): time-based retention policy (blocks writes/deletes until timer expires) or legal hold (blocks until removed). Apply at container level. Required for SEC 17a-4 / FINRA compliance. When locked, even owners can't bypass.
  • Disable Shared Key access: a top-level setting per storage account that disables Shared Key entirely — only Entra ID-based access works. Pair with managed identities to eliminate the entire key-leak vector.
Concrete example

A regulated workload stores customer data with 7-year retention. Design: Storage Account with Shared Key access disabled (Entra ID-only). Applications use system-assigned managed identities with Storage Blob Data Contributor role. Private endpoint in the app subnet; public network access disabled. Time-based immutability policy (7 years, locked) on the data container. External auditors get scoped user-delegation SAS tokens with 1-hour expiry, revocable by signing the identity out.

Key takeaway: disable Shared Key, use managed identity + data-plane RBAC for apps, user-delegation SAS for time-bound external access. Private endpoint > firewall > nothing. WORM for compliance retention.
⚡ Mini-quiz
Drill Storage security scenarios → study mode (10 questions).
Module 53 lessons
SQL, Container, and VM Security

Extend security to compute and data workloads. Enable SQL Transparent Data Encryption (TDE), Dynamic Data Masking, Always Encrypted for column-level protection, and SQL Auditing with Log Analytics. Secure AKS clusters with Entra ID RBAC, pod-managed identity, Azure Policy, network policies, and image scanning via Microsoft Defender for Containers. Harden VMs with JIT access, endpoint protection assessments, and adaptive application controls.

SQL TDE + CMK Dynamic Data Masking vs Always Encrypted SQL Advanced Threat Protection + Vulnerability Assessment AKS RBAC + pod-managed identity JIT VM access Adaptive application controls Container registry security + image scanning
📖 Read in-depth chapter
Lesson 5.1 SQL security — TDE, masking, Always Encrypted

Azure SQL has three overlapping data-protection features that the exam routinely contrasts: TDE encrypts at rest, Dynamic Data Masking obscures at query, Always Encrypted protects against the DB admin themselves.

Key concepts
  • Transparent Data Encryption (TDE): encrypts the DB files at rest. ON by default for new Azure SQL DBs. Platform-managed key or CMK from Key Vault — CMK gives you key custody (BYOK).
  • Dynamic Data Masking (DDM): obscures sensitive columns at query time for users without UNMASK permission. The data IS still in the DB; DDM only changes what users SEE. Not a real encryption control — use for "developers can query prod, with PII redacted".
  • Always Encrypted: client-side encryption — the column is encrypted in the app before it ever reaches SQL. SQL Server never sees the plaintext or the key. Protects against compromised DB admins or compromised SQL servers. Two modes: deterministic (allows equality queries) and randomised (most secure, no querying on the column).
  • Always Encrypted with Secure Enclaves: newer — enclave (Intel SGX or VBS) on the SQL host can run pattern-matching, range queries, and joins on encrypted data. Removes the deterministic-mode limitation.
  • SQL Auditing: enables event logging to Storage / Log Analytics / Event Hub. Always enable for production. Audit-action groups: BATCH_COMPLETED_GROUP (all queries), SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP.
  • Microsoft Defender for SQL: adds Advanced Threat Protection (anomalous-query alerts), Vulnerability Assessment (weekly scan against best-practice rules). Required for SQL workloads protecting regulated data.
Concrete example

A bank stores credit card numbers in an Azure SQL DB. Design: TDE enabled with CMK (key custody). Always Encrypted (randomised) on the card-number column — the DB admin CAN see encrypted blobs but never plaintext. Application code uses the Always Encrypted client driver with the cert from Key Vault. Non-sensitive PII columns (name, email) use Dynamic Data Masking so devs running queries against prod replicas see masked values. Defender for SQL turned on, audit to Log Analytics, alerts route to the SOC.

Key takeaway: TDE at rest (CMK for custody). DDM for query-time obscuring (NOT encryption). Always Encrypted for end-to-end client-side protection (DB admin can't see plaintext). Defender for SQL adds threat detection on top.
⚡ Mini-quiz
Drill SQL security scenarios → study mode (10 questions).
Lesson 5.2 AKS security — Entra RBAC, pod identity, network policies

Securing AKS is multiple layers: the control plane (Entra ID RBAC for kubectl), the workload identities (Workload Identity / pod-managed identity), the network (Network Policies + private cluster), and the image supply chain (ACR + Defender for Containers scanning).

Key concepts
  • Entra ID integration for kubectl: AKS uses Entra ID for cluster authentication; Kubernetes RBAC maps Entra users/groups to in-cluster roles via ClusterRoleBindings. Disable the local --admin kubeconfig in production.
  • Workload Identity (modern): federated credentials between AKS service accounts and Entra ID — pods authenticate as managed identities without storing secrets. Replaces the legacy AAD Pod Identity (deprecated).
  • Azure CNI vs Kubenet: CNI gives each pod a VNet IP, supports Network Policies and Calico. Kubenet uses NAT and is simpler but limited. AZ-500 expects CNI for any non-trivial cluster.
  • Network Policies: Kubernetes-native pod-to-pod traffic rules — like NSGs but for pods. Azure Network Policy or Calico. Required for "deny by default" between pods.
  • Private cluster: AKS API server has private IP only (no public endpoint). Combined with VNet integration + Azure Bastion for kubectl access. Required for high-security AKS.
  • Image scanning: ACR + Microsoft Defender for Containers scans on push, on registry catalog, and at runtime. CIS Kubernetes Benchmark compliance + runtime threat detection.
Concrete example

A regulated AKS cluster running customer workloads: private cluster with API on a private IP in the spoke VNet. Entra ID-integrated RBAC, local admin disabled, kubectl access only via PIM-elevated Azure Kubernetes Service RBAC Cluster Admin role. Each app's pods use Workload Identity mapped to Azure managed identities for Key Vault / Storage access. Network Policies deny all cross-namespace traffic by default; ingress allowed only from the platform's NGINX namespace. Images pulled from a Premium ACR with Defender for Containers scanning + admission control (block deploys with high CVEs).

Key takeaway: Entra RBAC + Workload Identity + Network Policies + private cluster + image scanning. Disable local admin. Workload Identity replaces AAD Pod Identity.
⚡ Mini-quiz
Practise AKS security scenarios → quick quiz (5 questions).
Lesson 5.3 VM hardening — JIT, Defender for Servers, adaptive controls

VMs are the most-attacked Azure workload. AZ-500 tests JIT access (close down standing RDP/SSH), Defender for Servers (runtime detection + vulnerability scanning), and adaptive controls (machine-learned allow-list of binaries).

Key concepts
  • Just-In-Time (JIT) VM access: opens an NSG rule for RDP/SSH for a configured window when an admin requests, then auto-closes. Requires Defender for Cloud + Defender for Servers Plan 2.
  • Bastion vs JIT: Bastion brokers RDP/SSH without any inbound NSG rule. JIT briefly opens an NSG rule for direct VM IP access. Bastion is more secure; JIT is simpler and works for legacy workflows that need direct IP.
  • Defender for Servers Plan 1 vs Plan 2: Plan 1 = MDE integration only. Plan 2 = MDE + JIT + adaptive application controls + adaptive network hardening + Qualys vulnerability scanning + file integrity monitoring.
  • Microsoft Defender for Endpoint (MDE) integration: Plan 1/2 auto-deploys MDE to Windows + Linux VMs via the Defender for Cloud agent. Alerts flow into Defender for Cloud Security Alerts + Sentinel if connected.
  • Adaptive application controls: Defender learns which binaries normally run on a VM group, then alerts (or blocks in audit mode) on unknown binaries. Anti-LotL technique. Plan 2 only.
  • File integrity monitoring (FIM): watches specified files / registry paths for changes and alerts. Useful for known-good config files; tunes false-positive ratio carefully.
  • Update management: Azure Update Manager (replacing legacy Automation Update Management) — assess + deploy OS patches across Azure + Arc-enabled servers, dynamic groups, maintenance windows.
Concrete example

A 50-VM workload needs RDP/SSH on demand, runtime threat detection, and OS patching governance. Enable Defender for Servers Plan 2 on the subscription. JIT VM access via Defender for Cloud — admins request 1-hour windows; rules auto-close. MDE deploys via Defender — alerts feed Sentinel. Adaptive application controls in Audit mode for 2 weeks, then promote to Enforce. Azure Update Manager with monthly maintenance windows; critical patches force-applied at-restart with a 7-day grace.

Key takeaway: Defender for Servers Plan 2 unlocks JIT + MDE + adaptive controls. Bastion or JIT (never standing RDP/SSH). Azure Update Manager for patching.
⚡ Mini-quiz
Drill VM hardening scenarios → study mode (10 questions).
Module 63 lessons
Microsoft Defender for Cloud

Defender for Cloud is the exam's primary security operations tool. Understand the Secure Score model and how recommendations map to controls and regulatory standards. Enable workload protections: Defender for Servers (MDE integration, JIT, Qualys), Defender for Storage (malware scanning, sensitive data discovery), Defender for SQL, Defender for Containers, and Defender for App Service. Use regulatory compliance dashboards to track CIS, NIST 800-53, and PCI DSS posture.

Secure Score and security controls JIT VM access via Defender Defender for Servers (Plan 1 vs Plan 2) Defender for Storage malware scanning Defender for SQL on-prem + Azure Regulatory compliance dashboards Auto-provisioning settings
📖 Read in-depth chapter
Lesson 6.1 Secure Score and CSPM foundations

Defender for Cloud is two products bundled: CSPM (Cloud Security Posture Management — Secure Score, recommendations, compliance) and CWPP (Cloud Workload Protection Platform — the Defender for X plans). CSPM is free; CWPP is per-workload paid.

Key concepts
  • Secure Score: 0-100% rolling score per subscription, computed from coverage of "security controls" — bundles of related recommendations. Each recommendation is weighted; some are mandatory (denied subscription if not addressed for certain compliance standards).
  • Free CSPM (Foundational): Secure Score, recommendations, security alerts from connected sources, regulatory compliance views (CIS, ISO 27001, etc.). On by default for every subscription.
  • Defender CSPM (paid): attack-path analysis (graphs of how a compromised resource could reach high-value targets), agentless scanning, governance assignments, container posture deep dive. Worth it for production at scale.
  • Recommendations: categorised by Compute / Identity / Storage / etc., each with severity, status, affected resources. Some support quick fix; others link to remediation guides. The Secure Score moves as you remediate.
  • Exemptions: mark a recommendation as N/A or Risk-Accepted with justification + expiry. Audit trail kept. Use sparingly — exemptions accumulate technical debt.
  • Multi-cloud: Defender for Cloud can connect AWS accounts and GCP projects, applying the same CSPM model. Useful for unified posture in multi-cloud orgs.
Concrete example

A new subscription starts at Secure Score 45%. Investigation: 12 high-severity recommendations cluster around "data + storage" and "identity". Highest-impact fixes: enable Defender for Storage, enable storage account firewalls, switch Key Vaults to RBAC + purge protection. Each fix lifts the score 5-8 points. After remediation: 78%. Outstanding items get exemptions with 90-day expiry and ticket numbers for tracking.

Key takeaway: CSPM (Secure Score + recommendations) is the free baseline. Defender CSPM unlocks attack-path analysis at scale. Use exemptions with expiry — don't let them sit forever.
⚡ Mini-quiz
Drill Secure Score + CSPM scenarios → study mode (10 questions).
Lesson 6.2 Defender plans per workload — Servers, Storage, SQL, Containers

The "Defender for X" plans add workload-specific protection on top of CSPM. AZ-500 tests which plan provides which feature — get the plan wrong and you propose a control the customer can't enable.

Key concepts
  • Defender for Servers: Plan 1 (MDE integration only) or Plan 2 (MDE + JIT + adaptive controls + Qualys VA + FIM + 500 MB Log Analytics ingest). Pick Plan 2 for production.
  • Defender for Storage: on-blob malware scanning (V2), sensitive-data discovery (V2), anomalous-access threat detection. Per-storage-account or per-subscription pricing.
  • Defender for SQL: Advanced Threat Protection (anomalous-query alerts), Vulnerability Assessment (weekly scan), works for Azure SQL DB / SQL on IaaS / on-prem SQL via Arc.
  • Defender for Containers: AKS posture (CIS Kubernetes Benchmark), image scanning in ACR, runtime threat detection (process anomalies in pods), Azure Policy admission control.
  • Defender for App Service: runtime threat detection for App Service workloads (anomalous traffic, command injection, dangling DNS).
  • Defender for Key Vault / Resource Manager / DNS: anomalous-access detection for the management plane and DNS query patterns.
  • Subscription enablement: plans are enabled per-subscription per-workload. Use Azure Policy to enforce enablement across subscriptions — saves having to manually toggle on every new sub.
Concrete example

A regulated production subscription enables: Defender for Servers Plan 2 (JIT + MDE for VMs), Defender for Storage (malware scanning on customer uploads), Defender for SQL (ATP + VA on the customer DB), Defender for Containers (CIS scanning + runtime detection for AKS), Defender for Key Vault (catches abnormal vault access). Total: ~$30/server/month + per-workload fees — easily justified for regulated workloads. Azure Policy initiative Enable Defender for X plans enforces enablement on any future production subscriptions.

Key takeaway: match Defender plan to workload. Plan 2 over Plan 1 for Servers when production. Enforce enablement via Azure Policy across the org — don't rely on manual toggles per subscription.
⚡ Mini-quiz
Practise Defender plan-selection scenarios → quick quiz (5 questions).
Lesson 6.3 Regulatory compliance, alerts, automation

The last Defender pillar is the workflow side — tracking compliance posture against standards, routing alerts, automating remediation. AZ-500 cares about which compliance framework lives in Defender, how alerts flow, and where automation hooks in.

Key concepts
  • Built-in regulatory standards: Azure Security Benchmark (default), CIS Microsoft Azure Foundations Benchmark, NIST SP 800-53, ISO 27001, PCI DSS, SOC 2, HIPAA HITRUST, FedRAMP. View per-subscription, drill down to controls and the specific recommendations that satisfy them.
  • Custom standards: bundle Azure Policy initiatives into a custom compliance standard — useful for internal control frameworks.
  • Security alerts: Defender generates alerts (e.g., "anomalous storage access detected") that appear in the Security Alerts view, complete with severity, kill-chain phase (MITRE ATT&CK), affected resource, and remediation steps.
  • Workflow automation: Logic App-based playbooks triggered by alert or recommendation. Common patterns: tag the affected resource, post to Teams, create a ServiceNow ticket, auto-isolate a VM via NSG.
  • Continuous export: stream alerts + recommendations to Event Hub / Log Analytics / Storage for ingestion into SIEM (Sentinel) or third-party.
  • Defender for Cloud → Sentinel integration: a one-click data connector forwards Defender alerts as Sentinel incidents. SOC works the incident in Sentinel; Defender remains the source of truth for posture.
Concrete example

A regulated org tracks PCI DSS compliance per subscription. Enable the PCI DSS 3.2.1 regulatory standard in Defender for Cloud — the compliance view maps every PCI control to the Defender / Policy recommendations that satisfy it. Failing controls get tracked tickets. Workflow automation: a Logic App playbook triggers on any High-severity alert, creates a Sentinel incident, posts to the SOC Teams channel, and tags the affected resource InvestigationStatus=Active. Continuous export streams everything to Sentinel's Log Analytics workspace for long-term retention + KQL hunting.

Key takeaway: regulatory standards turn Defender into a compliance dashboard. Workflow automation closes the loop from alert → action. Continuous export feeds Sentinel.
⚡ Mini-quiz
Drill Defender compliance + automation scenarios → study mode (10 questions).
Module 73 lessons
Microsoft Sentinel — SIEM, SOAR, and KQL Analytics

Microsoft Sentinel is the cloud-native SIEM/SOAR that ties together all AZ-500 security signals. Connect data connectors (Azure Activity, Microsoft 365 Defender, CEF/Syslog), write scheduled and NRT analytics rules with KQL, manage incidents and alerts, and build SOAR playbooks with Logic Apps. Use threat hunting with bookmarks, entity behavior analytics (UEBA), and Workbooks for visualization. Understand workspace design: cost, data retention, and cross-workspace queries.

Data connectors (Azure AD, M365 Defender, CEF, Syslog) KQL: summarize, extend, where, join Scheduled vs NRT analytics rules Incidents + alert grouping SOAR playbooks (Logic Apps) Threat hunting + bookmarks UEBA entity pages Workbooks + Dashboards
📖 Read in-depth chapter
Lesson 7.1 Sentinel architecture, workspaces, data connectors

Sentinel is a layer on top of Log Analytics — workspace design and data-connector selection determine both cost and coverage. The exam tests workspace topology choices and which connector to use for which signal.

Key concepts
  • Workspace topology: one Sentinel workspace per security boundary (single tenant, region, or compliance scope). Multi-tenant MSSP scenarios use Azure Lighthouse to query across customer workspaces. Resist "one global workspace" — egress and quota issues.
  • Data connectors: turnkey integrations. Microsoft signals (Entra ID, Defender for Cloud, Defender XDR, M365) come free; third-party (Palo Alto, AWS, Cisco, Cloudflare) via CEF / Syslog / REST APIs. Cost is ingestion + retention, not the connector itself.
  • Ingestion cost: ~$2.50/GB ingested (varies by region, commitment tier). Sentinel adds ~$2/GB on top of Log Analytics ingest. Largest ingest sources: NSG flow logs, Defender for Endpoint device events, on-prem firewall syslog. Sample / drop low-value logs.
  • Retention tiers: Analytics tier (queryable, default 90d, expensive), Basic tier (cheaper, limited query), Archive (long-term cold, restore-to-query). Mix tiers to meet compliance retention without breaking the budget.
  • Auxiliary logs (newer): table type for cheap-to-ingest, occasionally-queried logs (verbose application logs, low-priority audit trails). Pair with summary rules to lift signal into Analytics tier.
  • Watchlists: CSV-uploaded reference data (executive accounts, known-malicious IPs, allowlists) joinable in KQL via _GetWatchlist(). Great for enrichment.
Concrete example

A regulated enterprise designs Sentinel: one workspace per region (eastus2, westeurope) for data residency, all under one Microsoft Sentinel solution. Data connectors: Entra ID sign-ins, Defender XDR, Azure Activity, on-prem firewall via CEF (Logstash forwarder). NSG flow logs sampled at 10% to control ingest cost. Watchlist for ~500 executive accounts joined to sign-in alerts for VIP-prioritisation. Long-term retention: 90d Analytics + 2y Archive for compliance.

Key takeaway: per-region workspace topology, paid CWPP signals via Defender connectors, third-party via CEF/Syslog. Manage ingest cost via sampling + retention tier choice. Watchlists for enrichment data.
⚡ Mini-quiz
Drill Sentinel architecture scenarios → study mode (10 questions).
Lesson 7.2 Analytics rules, incidents, KQL detections

Detections turn raw logs into incidents the SOC works. AZ-500 tests rule types (scheduled, NRT, anomaly, ML), the alert-to-incident pipeline, and basic KQL for writing custom detections.

Key concepts
  • Scheduled rules: KQL query that runs on a frequency (5 min - 14 days), evaluates a threshold, creates alerts. The most common detection type. Tune frequency vs detection latency vs query cost.
  • Near-Real-Time (NRT) rules: sub-minute detection, KQL with strict limits (single table, no joins beyond watchlists). Use for high-fidelity quick alerts (e.g., disabled-user sign-in).
  • Microsoft Security rules: turn-key analytics curated by Microsoft for specific data sources (sign-in alerts, defender alerts). Enable many in one click; tune later.
  • Anomaly + ML rules: Microsoft-trained anomaly detections (impossible travel, unusual data download). Tunable thresholds but no rule logic to write. Mostly Defender for Cloud / Identity Protection derived.
  • Alert grouping: aggregate related alerts into one incident. Group by entity (same user / IP / host), by time window, or by alert template. Reduces SOC noise massively.
  • KQL essentials for detections: where + summarize count() by + where count_ > threshold is the basic pattern. Use extend to enrich; join kind=inner for correlation; materialize() for repeated sub-queries.
Concrete example

Detection: "any user with > 10 failed sign-ins from distinct IPs in 5 minutes". KQL: SigninLogs | where ResultType != 0 | summarize FailedSignIns = count(), DistinctIPs = dcount(IPAddress) by UserPrincipalName, bin(TimeGenerated, 5m) | where FailedSignIns > 10 and DistinctIPs > 5. Wrap in a scheduled rule with 5-minute frequency, alert severity Medium, group alerts by UserPrincipalName for a single incident per affected user. Pair with a NRT rule for "any sign-in from a known bad IP in the watchlist" — fires within seconds.

Key takeaway: scheduled for general detections, NRT for high-fidelity instants, anomaly for ML-driven baselines. Grouping turns alert noise into actionable incidents.
⚡ Mini-quiz
Practise rule-type and KQL scenarios → quick quiz (5 questions).
Lesson 7.3 SOAR — automation rules, playbooks, threat hunting

Detection without response is a dashboard, not security ops. Sentinel's SOAR layer (automation rules + playbooks) closes the loop; threat hunting puts analysts ahead of detections.

Key concepts
  • Automation rules: Sentinel-native triggers on alert creation / incident creation / incident update. Lightweight actions: change severity, assign owner, add tag, run a playbook.
  • Playbooks: Logic Apps that execute richer workflows. Built-in connectors for Entra ID (disable user), MDE (isolate device), Microsoft Teams (post incident), Defender for Cloud, ServiceNow, ITSM tools.
  • Common playbook patterns: on critical incident → post to SOC Teams channel; on disabled-user sign-in alert → automatically disable account in Entra ID; on malware detected → trigger MDE host isolation.
  • Threat hunting: proactive KQL queries against historical data — looking for behaviours BEFORE detections fire. Saved hunts + bookmarks track interesting findings without raising alerts.
  • Entity Behavior Analytics (UEBA): Microsoft-managed baselines per user/host/IP — surfaces "this account is doing something unusual for it". Entity pages aggregate all signals around one entity.
  • Workbooks: parameterised KQL dashboards. Both built-in (per data connector) and custom. Use to track SOC KPIs (incidents/day, MTTR, top affected entities) for the security leadership.
Concrete example

A SOC responds to compromised-account incidents within 5 minutes. Design: automation rule on incidents tagged "Compromised Account" → run playbook: (a) call Microsoft Graph to disable the user in Entra ID, (b) revoke all refresh tokens, (c) post the incident summary to the #soc-alerts Teams channel, (d) create a ServiceNow ticket assigned to the analyst on call. Threat hunters use saved hunting queries like "users newly added to privileged groups in the last 24h" to spot post-compromise persistence ahead of formal detection.

Key takeaway: automation rules for lightweight in-Sentinel actions, playbooks for cross-system response. Hunting + UEBA find what detections miss. Workbooks expose SOC KPIs to leadership.
⚡ Mini-quiz
Drill SOAR + hunting scenarios → study mode (10 questions).
Reinforce what you just read 60 scenario-based questions covering every AZ-500 domain — track your score, no signup.
⚡ Take the quiz Podcast
🔐

PIM vs Conditional Access — what's the difference?

Conditional Access controls how someone signs in (require MFA, compliant device). PIM controls what roles they can activate after signing in — it's the last mile of least-privilege for admin access. Both appear heavily on AZ-500.

🔓

Key Vault access policies vs RBAC — when to use which

Access policies are the legacy model — they work at the vault level, not per-key. RBAC is Microsoft's recommended model: assign Key Vault Secrets User or Key Vault Crypto Officer scoped to individual secrets. AZ-500 expects you to know both models and the tradeoffs.

📈

Sentinel Secure Score ≠ Defender Secure Score

Defender for Cloud has its own Secure Score for resource posture. Sentinel has no Secure Score — it's a SIEM. Many candidates confuse the two. On exam day: Secure Score = Defender for Cloud; analytics rules + incidents = Sentinel.

6-week study plan

Week 1
Identity foundations + Conditional Access Module 1 & 2. Set up a free Entra ID P2 trial. Create Conditional Access policies (MFA on sign-in risk). Enable Identity Protection and explore the risky users report. Build a PIM-eligible role assignment for a test user and walk through the activation flow.
Week 2
RBAC, managed identities, and access reviews Create a custom RBAC role with minimum permissions. Assign system-assigned and user-assigned managed identities to a VM and a Function App. Run an Entra ID access review on a group. Complete 15 identity-domain quiz questions.
Week 3
Secure networking (Module 3) Deploy Azure Firewall in a hub VNet. Create NSG rules using service tags. Enable DDoS Protection Standard on a VNet and review the mitigation metrics dashboard. Explore Private Endpoint for a Storage Account — verify DNS resolution. Practice 12 networking-domain questions.
Week 4
Key Vault, disk encryption, SQL, and containers (Modules 4–5) Create a Key Vault in RBAC mode. Enable soft-delete and purge protection. Enable ADE on a Windows VM. Configure SQL Dynamic Data Masking and enable the Vulnerability Assessment scanner. Enable Defender for Containers and review image scanning results in ACR.
Week 5
Defender for Cloud + Sentinel (Modules 6–7) Enable Defender for Cloud enhanced workload protections. Explore the Secure Score recommendations dashboard and fix 3 low-effort issues. In Sentinel: connect the Azure Activity connector, write a scheduled analytics rule in KQL, and build a simple playbook that posts to a Teams channel on new high-severity incidents.
Week 6
Full practice tests + weak-domain review Take the full 60-question CertQuests AZ-500 quiz. Identify your weakest domain. Read the official Microsoft Learn exam study guide for any missed objectives. Take 2–3 timed mock exams from other providers. Review case study format questions (often 4–10 sub-questions per scenario).

⚠️ Top 4 AZ-500 exam mistakes

  • Confusing DDoS Basic and Standard: Basic is free and on by default but has no SLA-backed mitigation, no per-resource telemetry, and no rapid response team. Standard covers these — exam scenarios that mention "per-virtual-network mitigation policy" or "attack metrics" require Standard.
  • Getting Key Vault access model wrong: If the vault uses the legacy access policy model, you need an access policy entry per identity. If it uses the RBAC model, you assign built-in roles like Key Vault Secrets Officer. Mixing both models causes confusion on tricky options.
  • Forgetting that Azure Firewall Premium features require explicit SKU selection: IDPS and TLS inspection are Premium-only. Standard Firewall doesn't inspect encrypted traffic — a very common exam trap.
  • Sentinel vs Defender for Cloud responsibilities: Sentinel is your SIEM/SOAR (analytics rules, incidents, playbooks). Defender for Cloud is posture management + workload protection. JIT VM access, Secure Score, and vulnerability assessment live in Defender for Cloud — not Sentinel.
Start practicing →