SY0-501 · Question #141
A company wants to ensure that the validity of publicly trusted certificates used by its web server can be determined even during an extended internet outage. Which of the following should be…
The correct answer is B. Ocsp. To determine certificate validity during an extended internet outage, OCSP (Online Certificate Status Protocol) should be implemented, particularly utilizing OCSP stapling, which allows the web server to provide up-to-date revocation status directly to clients.
Question
A company wants to ensure that the validity of publicly trusted certificates used by its web server can be determined even during an extended internet outage. Which of the following should be implemented?
Options
- ARecovery agent
- BOcsp
- CCrl
- DKey escrow
How the community answered
(36 responses)- A3% (1)
- B75% (27)
- C6% (2)
- D17% (6)
Why each option
To determine certificate validity during an extended internet outage, OCSP (Online Certificate Status Protocol) should be implemented, particularly utilizing OCSP stapling, which allows the web server to provide up-to-date revocation status directly to clients.
A recovery agent is used to recover encrypted data by decrypting it with a specific key, not for checking the validity or revocation status of a certificate.
OCSP (Online Certificate Status Protocol), especially through OCSP stapling, enables a web server to periodically fetch and cache a signed revocation status from the certificate authority. During a TLS handshake, the server 'staples' this response to its certificate, allowing clients to verify revocation status without needing to contact the OCSP responder themselves, thus supporting validity checks even during client or server internet outages to the responder.
While Certificate Revocation Lists (CRLs) provide revocation status and can be cached, during an extended internet outage, a cached CRL might become outdated, preventing clients from determining the most current revocation status accurately.
Key escrow involves storing copies of private keys for disaster recovery or legal access purposes, which is unrelated to determining the validity of publicly trusted certificates.
Concept tested: Certificate revocation status checking with offline capability
Source: https://learn.microsoft.com/en-us/windows-server/identity/ad-cs/adcs-what-is-online-responder
Topics
Community Discussion
No community discussion yet for this question.