Microsoft AZ-801: Active Directory Domain Services Security — Study Guide

Part of the Microsoft Windows Server Hybrid Administrator Associate AZ-801 — Study Guide. Practice with verified answers in the Microsoft exam hub, or take timed practice tests on ExamRoll.io.

Overview

Active Directory Domain Services (AD DS) underpins identity and access on Windows networks. Securing AD DS means controlling how credentials are created, stored, and used; constraining where privileged identities can authenticate; hardening authentication protocols; auditing high‑value actions; and ensuring reliable recovery. This section covers fine‑grained password and account policies, privileged identity protections, authentication hardening and delegation, auditing and SACLs, the Recycle Bin, LDAP signing and channel binding, AdminSDHolder behavior, backup and authoritative restores including SYSVOL recovery, and the AD tiering model.

Credential Policies and Privileged Identity Controls

Fine‑grained password policies (PSOs) allow multiple password/lockout policies in a single domain without extra domains. PSOs are msDS-PasswordSettings objects stored in CN=Password Settings Container,CN=System,<domain DN> (the msDS-PasswordSettingsContainer). A PSO applies to users and global security groups through msDS-PSOAppliesTo. When a user has multiple applicable PSOs (directly or via groups), the resultant PSO is the one with the lowest msDS-PasswordSettingsPrecedence value; if there is a tie, the PSO with the lowest GUID wins. The user’s effective PSO is stamped on msDS-ResultantPSO. Design PSOs so that lower precedence numbers map to the most restrictive policies you intend to win, and validate effective policies by reading msDS-ResultantPSO.

The Protected Users security group hardens high‑value accounts by removing legacy and risky authentication behaviors. Members:

Authentication policies and authentication policy silos restrict where and how accounts can authenticate. An authentication policy can set per‑account Kerberos constraints such as TGT lifetime and permitted devices (by SPN/host FQDN). An authentication policy silo groups users, computers, and service accounts so that only allowed combinations can authenticate using Kerberos constrained by that policy. This enforces “station‑to‑admin” controls: for example, Tier 0 admins can only log on to domain controllers and designated privileged access workstations (PAWs), not to member servers or workstations. Combine with Protected Users for maximum effect. These features require Windows Server 2012 R2 DCs and KDC armoring.

AdminSDHolder and SDProp protect the ACLs of privileged identities. Members of built‑in admin groups (for example, Domain Admins, Enterprise Admins, Schema Admins, Administrators, Account Operators, Server Operators, Backup Operators, Print Operators, and others) are “protected.” SDProp runs hourly on the PDC Emulator, copying the ACL from CN=AdminSDHolder,CN=System to protected objects, and it disables ACL inheritance on them (AdminCount=1). To grant helpdesk rights over protected objects, change the ACL on AdminSDHolder—never directly on individual protected objects—or the change will be reverted. When an account is removed from all protected groups, re‑enable ACL inheritance and clear AdminCount so OU‑level ACLs and GPOs apply again.

Adopt an AD tiering model to minimize credential exposure. Tier 0 contains domain controllers, identity systems (PKI, federation, PAM), and the admin accounts that administer them. Tier 1 contains server workloads and their admins. Tier 2 contains workstations and their admins. Prevent logon across tiers, use PAWs for Tier 0/1 administration, and isolate credentials using features like Protected Users, authentication silos, Remote Credential Guard, Just‑Enough Administration (JEA), and Windows LAPS/Windows LAPS for local admin password rotation.

Authentication Hardening and Delegation

LDAP signing and channel binding defend against relay and man‑in‑the‑middle attacks. Configure domain controllers to require signing via Group Policy: Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options\“Domain controller: LDAP server signing requirements” = Require signing. Require client signing where feasible: “Network security: LDAP client signing requirements” = Require signing. For LDAPS, enable channel binding on DCs by setting LDAPEnforceChannelBinding under HKLM\SYSTEM\CurrentControlSet\Services\NTDS\Parameters to 1 (Enabled, recommended) or 2 (Always). Inventory legacy devices and applications; enabling signing or channel binding can break anonymous/simple binds or old LDAP stacks. Monitor Directory Service event log: 2886 (signing not required), 2887 (unsigned simple binds summary), 2888 (signing still disabled), 2889 (client IPs performing unsigned simple binds when diagnostic logging is enabled). Stage changes in “Warn” (channel binding=1) before enforcing “Always” (2).

Kerberos delegation controls how services act on behalf of users:

Auditing and Resilience

AD DS auditing must be deliberate and specific. Use Advanced Audit Policy Configuration to enable subcategories rather than legacy categories, and set “Audit: Force audit policy subcategory settings to override audit policy category settings” to ensure consistency. Recommended subcategories include Account Management, Logon/Logoff (Logon, Logoff, Special Logon), Account Logon (Kerberos Authentication Service/Service Ticket Operations), and Directory Service Changes/Access. Key event IDs:

The AD DS Recycle Bin protects from accidental deletions by preserving all attributes and backlinks for deleted objects. Enable it once per forest (irreversible) via ADAC or PowerShell (Enable-ADOptionalFeature -Identity ‘Recycle Bin Feature’ -Scope ForestOrConfigurationSet -Target <forest>). After enabling, a deleted object remains in a “deleted object” state for msDS-DeletedObjectLifetime (if unset, defaults to tombstoneLifetime), during which it can be fully restored with attributes intact. After that, it becomes a recycled object and is no longer restorable with attributes, and later it is garbage‑collected. Modern forests typically default tombstoneLifetime to 180 days; older forests might be 60. Restore with ADAC, LDP, or PowerShell (Restore-ADObject), and prefer authoritative group membership recovery via Recycle Bin rather than manual re‑adds to avoid privilege drift.

Backups and authoritative restore are last‑line protections. Take frequent System State backups of each domain controller using Windows Server Backup or wbadmin (wbadmin start systemstatebackup). For object‑level rollbacks beyond Recycle Bin, perform a non‑authoritative restore of System State, then use ntdsutil to mark specific objects or OUs authoritative (bumping their version so replication re‑applies them). Understand the difference: non‑authoritative brings the DC back and then applies current replication; authoritative marks an object so the restored version overwrites newer replicas. For SYSVOL using DFS Replication (DFSR), perform non‑authoritative or authoritative recovery:

Putting It Together: Operations, Hardening Priorities, and Tiered Access

Prioritize Tier 0 first: enforce LDAP signing/channel binding, remove unconstrained delegation, move to KCD/RBCD, place privileged identities in Protected Users and attach authentication policies/silos to restrict logon endpoints, and require PAWs for Tier 0/1 admins. Establish PSOs for privileged accounts with strict lockout and rotation. Turn on advanced auditing with SACLs on Tier 0 containers. Ensure daily DC System State backups and documented authoritative restore and SYSVOL recovery runbooks. In Tier 1/2, block admin logon to lower tiers, remove local admin reuse with Windows LAPS, and monitor 4625/4740 spikes and 4648 misuse for lateral movement attempts.

Practical Problem Scenario

Adobe must secure an on‑premises AD DS forest rapidly after acquiring a subsidiary whose line‑of‑business apps rely on legacy protocols. The goals are to reduce password spraying success, stop credential relay into DCs, restrict privileged logons to PAWs, modernize delegation for a web tier, and ensure rapid recovery from accidental deletions.

  1. Define PSOs and assign them to privileged groups
  1. Enforce Protected Users and authentication silos
  1. Harden LDAP and monitor for breakage
  1. Migrate delegation to RBCD for the web tier
  1. Enable advanced auditing and SACLs
  1. Turn on AD DS Recycle Bin and finalize recovery runbooks
  1. Implement the AD tiering model operationally

Microsoft Sentinel and Security Monitoring · All domains · Azure Arc and Hybrid Server Management

Practice these questions → · Timed practice on 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.

Pass your exam →

Browse Microsoft →

Related guides

All-in-one access

One subscription. Every exam.

Every plan unlocks unlimited answer search, practice tests, AI explanations, and the full resource library — in 20+ languages.

Monthly
24.87
Just €0.83/day
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

Best value
12 months
179.87
Just €0.49/daySave 40%
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

✓ Free plan included · ✓ Cancel anytime · ✓ All plans unlock the full product