GPEN · Question #245
Which of the following Web authentication techniques uses a single sign-on scheme?
The correct answer is D. Microsoft Passport authentication. Microsoft Passport authentication implements a single sign-on (SSO) scheme, allowing users to authenticate once and access multiple services without re-entering credentials.
Question
Which of the following Web authentication techniques uses a single sign-on scheme?
Options
- ABasic authentication
- BDigest authentication
- CNTLM authentication
- DMicrosoft Passport authentication
How the community answered
(57 responses)- A2% (1)
- B12% (7)
- C5% (3)
- D81% (46)
Why each option
Microsoft Passport authentication implements a single sign-on (SSO) scheme, allowing users to authenticate once and access multiple services without re-entering credentials.
Basic authentication transmits Base64-encoded credentials per request and has no SSO mechanism - users must authenticate separately to each protected resource.
Digest authentication uses a challenge-response hash mechanism to avoid sending plaintext passwords but still requires per-resource authentication with no shared session or token federation.
NTLM authentication is a Windows challenge-response protocol for local network authentication that does not implement a cross-domain or cross-service SSO scheme in the way Passport does.
Microsoft Passport authentication is a centralized SSO service that authenticates users once via a trusted identity provider, issuing tokens that grant access to multiple participating sites and services. Unlike the other options, it is specifically architected around federated identity and token-based access delegation, which is the defining characteristic of SSO systems.
Concept tested: Single sign-on web authentication mechanisms
Source: https://learn.microsoft.com/en-us/aspnet/web-forms/overview/older-versions-security/introduction/security-basics-and-asp-net-support-cs
Topics
Community Discussion
No community discussion yet for this question.