An organization observes significant latency during TLS handshakes because client browsers independently query an external Certificate Authority (CA) to check revocation status. Additionally, the privacy team raises concerns that direct client queries allow the CA to monitor user browsing activity. Which of the following features should the security administrator configure on the web server to reduce latency and address the privacy concern?
- Enable OCSP stapling on the web server so it periodically fetches signed status responses and appends them to the TLS handshake.Answer
- BRequire clients to download the full Certificate Revocation List (CRL) before generating a new Certificate Signing Request (CSR).
- CConfigure the web server to use symmetric encryption algorithms to digitally sign the certificate status response sent to clients.
- DReplace the server certificate with a shared symmetric hash to ensure non-repudiation during certificate status validation.
Answer
Enable OCSP stapling on the web server so it periodically fetches signed status responses and appends them to the TLS handshake.
Online Certificate Status Protocol (OCSP) stapling allows the web server to query the CA's OCSP responder at regular intervals, cache the time-stamped signed response, and staple it directly to the TLS handshake. This eliminates client-side round-trip delays and prevents the CA from tracking client IP addresses.
Step-by-Step Solution
Key Concept
Online Certificate Status Protocol (OCSP) Stapling