6.1 Authentication Methods Portfolio
Key Takeaways
- Plan authentication by matching method strength to risk: phishing-resistant methods (passkeys/FIDO2, certificate-based authentication, Windows Hello for Business) outrank SMS, voice, and basic push for privileged and high-value access.
- The Microsoft Entra authentication methods policy is the modern control plane for enabling, scoping, and configuring methods such as Microsoft Authenticator, FIDO2, certificate-based authentication, Temporary Access Pass, and OATH tokens.
- Temporary Access Pass (TAP) is a time-limited passcode used for onboarding, recovery, and passwordless registration—not a standing password substitute for daily sign-in.
- Microsoft Authenticator supports notification (push), TOTP codes, and passwordless phone sign-in; passkeys (FIDO2) provide phishing-resistant hardware- or platform-backed credentials.
- Users must register methods before policies can require them; registration campaigns, combined security info registration, and admin-managed methods are core SC-300 operations.
Why authentication methods sit at the center of SC-300
Domain 2 of the Microsoft Identity and Access Administrator Associate exam (SC-300)—Implement authentication and access management—is the heaviest weighted area (about 25–30%). Before you write Conditional Access policies that require multifactor authentication (MFA) or passwordless grants, you must know which methods exist, how strong they are, how users register them, and which admin policy enables them.
Microsoft Entra ID (formerly Azure Active Directory) authenticates people and, with other features, workloads. This section is about human authentication methods: passwords, Microsoft Authenticator, Temporary Access Pass (TAP), certificate-based authentication (CBA), FIDO2 passkeys, software/hardware OATH, SMS/voice where still used, and related planning concepts. Passwordless device credentials such as Windows Hello for Business appear again in section 6.3; here you need them as part of the strength ladder.
Plan authentication for the organization
SC-300 planning questions rarely say “enable every method.” They describe a risk posture and ask for the right method mix.
| Planning question | Design implication |
|---|---|
| Who is the user? (standard, privileged, external, frontline) | Privileged and high-value users should use phishing-resistant methods |
| What devices and form factors are available? | FIDO2 keys, Windows Hello, phone app, smart cards/cert, kiosk limits |
| Hybrid or cloud-only? | Password writeback, CBA trust chain, Entra Kerberos, TAP for joiners |
| Legacy apps / protocols? | Legacy auth may block modern methods; plan app modernization or block |
| Recovery and helpdesk load? | TAP + Authenticator reduce password-reset tickets |
| Compliance / Zero Trust maturity? | Prefer phishing-resistant MFA over SMS OTP |
Zero Trust assumes breach and verifies explicitly. Authentication planning is how you raise the cost of credential theft: stolen passwords alone should not open corporate apps; phishing of SMS codes should not open Tier-0 admin portals.
Recommended enterprise pattern for SC-300 design answers:
- Disable or tightly limit weak methods (SMS/voice) for admins and sensitive apps when stronger methods are available.
- Enable Microsoft Authenticator (including passwordless phone sign-in where appropriate) for the broad workforce.
- Enable FIDO2/passkeys and/or CBA (and Windows Hello for Business on managed Windows) for phishing-resistant coverage.
- Use TAP for onboarding and recovery so users can register passwordless methods without sharing long-lived passwords.
- Drive registration with combined registration and registration campaigns before enforcing Conditional Access.
Authentication methods policy (modern control plane)
In the Microsoft Entra admin center, Protection > Authentication methods > Policies (wording may appear as Authentication methods policy) is the modern place to enable methods, set targets (all users or selected groups), and configure method-specific options.
| Method family (examples) | Typical policy role |
|---|---|
| Microsoft Authenticator | Push, TOTP, passwordless phone sign-in settings |
| Passkeys (FIDO2) | Enable security keys / platform passkeys; attestation and key restriction options |
| Certificate-based authentication | Enable CBA; bind certificate authorities and bindings |
| Temporary Access Pass | Enable TAP; set lifetime, one-time vs multi-use |
| Software OATH / Hardware OATH | Third-party authenticator apps and hardware tokens |
| SMS / Voice | Legacy phone methods; often restricted over time |
| Email OTP | Limited scenarios (for example some external/self-service flows)—not primary workforce MFA |
Exam distinction: older per-user MFA and some legacy MFA service settings still appear in documentation and migration stories, but new designs use authentication methods policy + Conditional Access (and Security defaults only as a simple baseline—section 6.2). If a scenario says “enable FIDO2 for the finance group only,” answer with the authentication methods policy targeting that group—not a random Azure RBAC role on a subscription.
Method-specific configuration matters. Examples:
- Authenticator — number matching and additional context reduce MFA fatigue/push-bombing risk.
- FIDO2 — enforce attestation or restrict AAGUIDs when only approved keys are allowed.
- TAP — maximum lifetime, length, and whether one-time use is required.
- CBA — which CAs are trusted, username binding (for example PrincipalName / RFC822), and affinity binding rules.
Certificate-based authentication (CBA)
Certificate-based authentication lets users sign in with an X.509 certificate—commonly on a smart card, PIV/CAC, or provisioned device certificate—instead of (or in addition to) passwords. Microsoft Entra CBA is a cloud authentication path that validates the certificate against configured trusted certificate authorities in Entra.
SC-300 depth:
- CBA is a strong, often phishing-resistant method when certificates are bound to hardware and private keys are non-exportable.
- You upload or configure certificate authorities and define username bindings so the cert maps to the correct Entra user.
- CBA is popular in government, regulated, and smart-card-heavy enterprises; it also appears when organizations move away from AD FS federated cert auth toward cloud authentication.
- CBA is not the same as “upload a client cert to an App Service.” The exam means user sign-in to Entra with CBA policy.
| Scenario cue | Prefer |
|---|---|
| Smart cards already issued; need Entra sign-in | Certificate-based authentication |
| Consumer-style phone app for general staff | Microsoft Authenticator |
| USB security key or platform passkey | FIDO2 / passkeys |
| New hire has no methods yet | Temporary Access Pass then register stronger methods |
Temporary Access Pass (TAP)
A Temporary Access Pass is a time-limited passcode that an admin (or automated process with rights) issues so a user can sign in and complete authentication method registration, recover access, or bootstrap passwordless without knowing a permanent password.
| TAP property | Why it matters |
|---|---|
| Lifetime | Short windows reduce abuse window |
| One-time vs multi-use | One-time is stricter for recovery desks |
| Scope via methods policy | Only enabled users/groups can use TAP |
| Not a daily password | Users should register Authenticator/FIDO2/WHfB and stop relying on TAP |
Classic exam stories:
- Joiner starts Monday, no phone enrolled → issue TAP → user registers Microsoft Authenticator and FIDO2 → TAP expires.
- Lost phone → helpdesk issues TAP after identity proofing → user re-registers methods.
- Passwordless-only workforce → TAP is the bridge because there is no password to reset in the classic sense.
Do not choose TAP as the standing second factor for executives; choose phishing-resistant registered methods.
OAuth 2.0 token awareness (identity admin view)
SC-300 is not a deep OAuth developer exam, but identity admins must understand what gets issued after successful authentication and why revocation (section 6.3) matters.
| Token type | Typical purpose | Admin relevance |
|---|---|---|
| ID token | Proves user authentication to the client (OpenID Connect) | Session identity claims |
| Access token | Authorizes calls to APIs (resource audience, scopes/roles) | Short-lived; stolen tokens are powerful until expiry |
| Refresh token | Obtains new access tokens without re-prompting the user | Long-lived; revoke sessions invalidates refresh tokens |
Primary refresh tokens and session artifacts are why “disable the account” alone is incomplete if a refresh token is still valid for some resources until revocation/CAE evaluates. You will connect this to Revoke sessions and Continuous Access Evaluation in later Conditional Access content; for this section, remember: successful auth produces tokens, and method strength reduces how easily an attacker obtains them.
App registrations and API permissions (Domain 3) consume these tokens; here, focus on user proof-of-possession of a method strong enough for the resource.
Microsoft Authenticator
Microsoft Authenticator is the default modern phone-based method for Microsoft 365 and Entra:
- Notification (push) — approve a sign-in prompt (prefer number matching).
- OATH TOTP codes — six-digit rotating codes if push is unavailable.
- Passwordless phone sign-in — use the phone as a primary credential (device registration + Authenticator), reducing password use.
Admin tasks for SC-300:
- Enable Authenticator in the authentication methods policy.
- Configure passwordless phone sign-in where the organization wants phone-as-credential.
- Understand that Authenticator registration is a prerequisite for many MFA Conditional Access grants.
- Prefer Authenticator over SMS for security and reliability; SMS is SIM-swap and interception prone.
Authenticator is strong MFA, but push MFA can still be phished or push-bombed in weaker configurations. Phishing-resistant methods (FIDO2, CBA, Windows Hello for Business in appropriate modes) sit higher on the strength ladder for privileged access.
Passkeys (FIDO2)
FIDO2 security keys and passkeys provide public-key credentials bound to an authenticator (hardware key, TPM-backed platform authenticator, or synced passkey ecosystems depending on platform support and policy).
Why exams love FIDO2/passkeys:
- Phishing resistant — credentials are origin-bound; fake sites cannot complete the ceremony the same way stolen passwords or OTP codes can.
- Works well for shared workstation constraints when personal phones are banned (hardware keys).
- Complements passwordless strategies with TAP for bootstrap.
Configure via authentication methods policy: enable passkey (FIDO2) authentication, set enforcement options (for example attestation, enforce specific authenticators), and target groups (pilots first, then broad).
| Method | Phishing resistance (typical) | User friction | Common SC-300 use |
|---|---|---|---|
| Password only | None | Low | Legacy / avoid as sole control |
| SMS / Voice OTP | Low | Medium | Migrate away when possible |
| Authenticator push / TOTP | Medium | Medium | Broad workforce MFA |
| Authenticator passwordless | Higher than password+SMS | Medium | Password reduction |
| FIDO2 / passkeys | High | Low–medium after setup | Privileged, high-value, phishing-resistant mandates |
| Certificate-based auth | High (with hardware-backed keys) | Medium (issuance) | Smart card enterprises |
| Windows Hello for Business | High (with proper deployment) | Low daily | Managed Windows endpoints |
Method strength and registration concepts
Method strength (and related Conditional Access grant options such as requiring phishing-resistant MFA or authentication strength policies) lets you express “not just any MFA.” On SC-300, when a stem says regulators require phishing-resistant authentication for admins, do not answer “SMS to Global Administrators.” Answer FIDO2, CBA, or Windows Hello for Business (as appropriate) enforced via Conditional Access authentication strengths / grant controls after methods are enabled and registered.
Registration is the operational bottleneck:
- Admin enables methods in policy.
- User (or admin) registers security info—often at
https://aka.ms/mysecurityinfoor during combined registration. - Conditional Access or Security defaults require the method at sign-in.
- Without step 2, step 3 locks users out—hence TAP, registration campaigns, and staged enforcement (report-only → pilot groups → all users).
Combined registration experiences let users set SSPR and MFA methods in one flow, reducing helpdesk tickets. MFA registration campaigns (often discussed with Identity Protection) nudge users who have not registered.
Putting the portfolio together
For any SC-300 authentication scenario, walk this path:
- Identify user population and risk (privileged? external? frontline?).
- Choose methods that meet strength requirements and device reality.
- Enable them in the authentication methods policy with correct targeting.
- Plan TAP and helpdesk identity-proofing for bootstrap/recovery.
- Drive registration before hard enforcement.
- Enforce with Conditional Access (prefer over Security defaults for granular modern designs—section 6.2).
- Remember tokens: strong auth reduces theft; session revocation handles residual sessions (section 6.3).
Finance executives must use phishing-resistant authentication for Microsoft 365. Which method pair best meets that requirement after proper enablement and registration?
A new employee has no registered MFA methods and the organization is passwordless-first. What should the helpdesk issue so the user can sign in once and register Microsoft Authenticator and a FIDO2 key?
Where do you enable FIDO2 passkeys for only the Pilot-Auth security group in a modern Microsoft Entra tenant?
Why must identity admins understand refresh tokens when designing authentication operations?