GSLC · Question #237
Which of the following statements about Digest authentication are true? Each correct answer represents a complete solution. Choose two.
The correct answer is A. Digest authentication is a more secure authentication method as compared to Basic authentication. D. In Digest authentication, passwords are sent across a network as a hash value, rather than as clear text. Digest authentication improves on Basic authentication by transmitting a hashed form of the password instead of clear text, making credential interception less dangerous.
Question
Which of the following statements about Digest authentication are true? Each correct answer represents a complete solution. Choose two.
Options
- ADigest authentication is a more secure authentication method as compared to Basic authentication.
- BIn Digest authentication, passwords are sent across a network as clear text, rather than as a has value.
- CDigest authentication is used by wireless LANs, which follow the IEEE 802.11 standard.
- DIn Digest authentication, passwords are sent across a network as a hash value, rather than as clear text.
How the community answered
(33 responses)- A85% (28)
- B9% (3)
- C6% (2)
Why each option
Digest authentication improves on Basic authentication by transmitting a hashed form of the password instead of clear text, making credential interception less dangerous.
Digest authentication is more secure than Basic authentication because Basic encodes credentials in Base64 (effectively clear text), while Digest uses an MD5 hash challenge-response mechanism that prevents the actual password from traversing the network.
This reverses the behavior of Digest authentication - it is Basic authentication that sends credentials as clear text (Base64-encoded), not Digest.
Digest authentication is an HTTP-level credential scheme (RFC 7616), not an IEEE 802.11 wireless LAN authentication mechanism; 802.11 uses protocols such as WPA2 with EAP variants.
In Digest authentication, the client computes an MD5 hash of the password combined with a server-supplied nonce and sends only that hash value, so the plaintext password is never transmitted across the network.
Concept tested: Digest vs Basic authentication credential handling
Source: https://learn.microsoft.com/en-us/iis/configuration/system.webserver/security/authentication/digestauthentication
Topics
Community Discussion
No community discussion yet for this question.