OCSP stapling

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

OCSP stapling, formally known as the TLS Certificate Status Request extension, is an alternative approach to the Online Certificate Status Protocol (OCSP) for checking the revocation status of X.509 digital certificates.[1] It allows the presenter of a certificate to bear the resource cost involved in providing OCSP responses by appending ("stapling") a time-stamped OCSP response signed by the CA to the initial TLS Handshake, eliminating the need for clients to contact the CA.[2][3]

Motivation

OCSP stapling addresses most of the issues with the original OCSP implementation.[3]

The original OCSP implementation can introduce a significant cost for the certificate authorities (CA) because it requires them to provide responses to every client of a given certificate in real time. For example, when a certificate is issued to a high traffic website, the servers of CAs are likely to be hit by enormous volumes of OCSP requests querying the validity of the certificate.[4]

OCSP checking potentially impairs users' privacy and slows down browsing, since it requires the client to contact a third party (the CA) to confirm the validity of each certificate that it encounters.[4]

Moreover, if the client fails to connect to the CA for an OCSP response, then it is forced to decide between two options, neither of which is desirable. The client may either choose to continue the connection anyway, defeating the purpose of OCSP revocation checking, or it may choose to terminate the connection based on the assumption that there is an attack, which decreases usability and could result in excessive false warnings and blocks.[5]

Solution

OCSP stapling resolves both problems in a fashion reminiscent of the Kerberos Ticket. In a stapling scenario, the certificate holder queries the OCSP server themselves at regular intervals, obtaining a signed time-stamped OCSP response. When the site's visitors attempt to connect to the site, this response is included ("stapled") with the TLS/SSL Handshake via the Certificate Status Request extension response (note: the TLS client must explicitly include a Certificate Status Request extension in its ClientHello TLS/SSL handshake message).[6] While it may appear that allowing the site operator to control verification responses would allow a fraudulent site to issue false verification for a revoked certificate, the stapled responses can't be forged as they need to be directly signed by the certificate authority, not the server.[3] If the client does not receive a stapled response, it will just contact the OCSP server by itself.[5] However, if the client receives an invalid stapled response, it will abort the connection.[1] The only increased risk of OCSP stapling is that the notification of revocation for a certificate may be delayed until the last-signed OCSP response expires.

As a result, clients continue to have verifiable assurance from the certificate authority that the certificate is presently valid (or was quite recently), but no longer need to individually contact the OCSP server. This means that the brunt of the resource burden is now placed back on the certificate holder. It also means that the client software no longer needs to disclose users' browsing habits to any third party.[4]

Overall performance is also improved: When the client fetches the OCSP response directly from the CA, it usually involves the lookup of the domain name of the CA's OCSP server in the DNS as well as establishing a connection to the OCSP server. When OCSP stapling is used, the certificate status information is delivered to the client through an already established channel, reducing overhead and improving performance.[2]

Specification

The TLS Certificate Status Request extension is specified in RFC 6066, Section 8.

RFC 6961 defines a Multiple Certificate Status Request extension, which allows a server to send multiple OCSP responses in the TLS handshake.

A draft proposal for an X509v3 extension field, which expired in April 2013, specified that a compliant server presenting a certificate carrying the extension must return a valid OCSP token in its response if the status_request extension is specified in the TLS client hello.[7] The current version of the proposal has been extended to support additional TLS extensions.[8] TLS developer Adam Langley discussed the extension in an April 2014 article following the repair of the Heartbleed OpenSSL bug.[9]

Deployment

OCSP stapling support is being progressively implemented. The OpenSSL project included support in their 0.9.8g release with the assistance of a grant from the Mozilla Foundation.

Apache HTTP Server supports OCSP stapling since version 2.3.3,[10] the nginx web server since version 1.3.7,[11] LiteSpeed Web Server since version 4.2.4,[12] Microsoft's IIS since Windows Server 2008,[13] HAProxy since version 1.5.0,[14] and F5 Networks BIG-IP since version 11.6.0.[15]

On the browser side, OCSP stapling was implemented in Firefox 26,[5][16] in Internet Explorer since Windows Vista,[17] and Google Chrome in Linux, Chrome OS, and Windows since Vista.[18]

For SMTP the Exim message transfer agent supports OCSP stapling in both client [19] and server [20] modes.

Limitations

OCSP stapling is designed to reduce the cost of an OCSP validation---both for the client and the OCSP responder---especially for large sites serving many simultaneous users. However, OCSP stapling supports only one OCSP response at a time, which is insufficient for certificate chains with intermediate CA certs.[21][22]

This limitation has been addressed by Multiple Certificate Status Request Extension, specified in RFC 6961. It adds the support for sending multiple OCSP responses.[23]

References

  1. 1.0 1.1 Lua error in package.lua at line 80: module 'strict' not found.
  2. 2.0 2.1 Lua error in package.lua at line 80: module 'strict' not found.
  3. 3.0 3.1 3.2 Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 4.2 Lua error in package.lua at line 80: module 'strict' not found.
  5. 5.0 5.1 5.2 Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. P. Hallam-Baker, X.509v3 Extension: OCSP Stapling Required
  8. P. Hallam-Baker X.509v3 TLS Feature Extension draft-hallambaker-tlsfeature-05
  9. A. Langley, No, don't enable revocation checking, April 19, 2014.
  10. Apache HTTP Server mod_ssl documentation - SSLUseStapling directive
  11. nginx-announce mailing list - nginx-1.3.7
  12. Release Log - Litespeed Tech. Retrieved 2014-02-07,
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. HAProxy website
  15. Release Note: BIG-IP LTM and TMOS 11.6.0
  16. Improving Revocation - MozillaWiki, retrieved 2014-04-28
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. The smtp transport, retrieved 2015-01-24
  20. Main configuration, retrieved 2015-01-24
  21. Mozilla NSS Bug 360420, Comment by Adam Langley
  22. Mozilla NSS Bug 611836 - Implement multiple OCSP stapling extension
  23. Lua error in package.lua at line 80: module 'strict' not found.