Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Motivation  





2 Solution  





3 Specification  





4 Deployment  





5 Limitations  





6 References  














OCSP stapling






Deutsch
Français

 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


The Online Certificate Status Protocol (OCSP) stapling, formally known as the TLS Certificate Status Request extension, is a standard for checking the revocation statusofX.509 digital certificates.[1] It allows the presenter of a certificate to bear the resource cost involved in providing Online Certificate Status Protocol (OCSP) responses by appending ("stapling") a time-stamped OCSP response signed by the CA (certificate authority) to the initial TLS handshake, eliminating the need for clients to contact the CA, with the aim of improving both security and performance.

Motivation[edit]

The original OCSP implementation has a number of issues.

Firstly, it 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.[2]

Also, 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.[2][3]

Moreover, if the client fails to connect to the CA for an OCSP response, then it is forced to decide between: (a) continuing the connection anyway; defeating the purpose of OCSP or (b) terminating the connection based on the assumption that there is an attack; but which could result in excessive false warnings and blocks.[4]

OCSP stapling is aimed at addressing these issues with the original OCSP implementation.[5][6]

Solution[edit]

OCSP stapling resolves both problems in a fashion reminiscent of the Kerberos ticket. In a stapling scenario, the certificate holder itself queries the OCSP server 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).[7]

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.[6] If the client does not receive a stapled response, it will just contact the OCSP server by itself.[4] 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.[2]

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.[5]

Specification[edit]

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.[8] The current version of the proposal has been extended to support additional TLS extensions.[9] TLS developer Adam Langley discussed the extension in an April 2014 article following the repair of the Heartbleed OpenSSL bug.[10]

Deployment[edit]

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,[11] the nginx web server since version 1.3.7,[12] LiteSpeed Web Server since version 4.2.4,[13] Microsoft's IIS since Windows Server 2008,[14] HAProxy since version 1.5.0,[15] F5 Networks BIG-IP since version 11.6.0,[16] KEMP LoadMasters since Version 7.2.37.1, and lighttpd since version 1.4.56.[17]

While many web servers advertise support for OCSP stapling, implementations are not always reliable.[18] For example, when Apache queries the OCSP server, in the event of a temporary failure, it will discard the cached good response from the previous request, and start serving bad response.[19] Nginx performs lazy loading of OCSP responses, which means that for the first few web requests it is unable to add the OCSP response.[20]

On the browser side, OCSP stapling was implemented in Firefox 26,[4][21]inInternet Explorer since Windows Vista,[22] and Google Chrome in Linux, ChromeOS, and Windows since Vista.[23]

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

Limitations[edit]

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.[26][27]

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

TLSv1.3 automatically removes this limitation, making browser support for RFC 6961 moot, as more and more web servers drop support for TLS 1.2. Under TLS 1.2 only one stapled response can be sent by a server, the OCSP response associated with the end-certificate. Under TLS 1.3 a server can send multiple OCSP responses, typically one for each certificate in the certificate chain. [29]

References[edit]

  1. ^ a b Eastlake, D. (January 2011). "Transport Layer Security (TLS) Extensions: Extension Definitions: Certificate Status Request". Internet Engineering Task Force (IETF). Retrieved March 2, 2015.
  • ^ a b c A., Jesin (June 12, 2014). "How To Configure OCSP Stapling on Apache and Nginx". Community Tutorials. Digital Ocean, Inc. Retrieved March 2, 2015.
  • ^ Note: With Microsoft CA and OCSP service (for example the type used as part of a typical Active Directory Domain) the OCSP service does not have to check back with the CA each time it wants to check the status of a certificate (thereby reducing the load in the CA). The OCSP service (generally running on a separate server to the CA) references the CRL (certificate revocation list) which is published typically once per week by the CA (schedule can be changed) and uses this as its source of information for checking the status of certificates.
  • ^ a b c Keeler, David (July 29, 2013). "OCSP Stapling in Firefox". Mozilla Security Blog. Mozilla Foundation. Retrieved March 2, 2015.
  • ^ a b Prince, Matthew (October 29, 2012). "OCSP Stapling: How CloudFlare Just Made SSL 30% Faster". CloudFlare, Inc. Retrieved March 2, 2015.
  • ^ a b Gibson, Steve. "Security Certificate Revocation Awareness: The case for "OCSP Must-Staple"". Gibson Research Corporation. Retrieved March 2, 2015.
  • ^ "OCSP Stapling". GlobalSign Support. GMO GlobalSign Inc. August 1, 2014. Retrieved March 2, 2015.
  • ^ P. Hallam-Baker, X.509v3 Extension: OCSP Stapling Required
  • ^ P. Hallam-Baker X.509v3 TLS Feature Extension draft-hallambaker-tlsfeature-05
  • ^ A. Langley, No, don't enable revocation checking, April 19, 2014.
  • ^ Apache HTTP Server mod_ssl documentation - SSLUseStapling directive
  • ^ nginx-announce mailing list - nginx-1.3.7
  • ^ Release Log - Litespeed Tech. Retrieved 2014-02-07,
  • ^ Duncan, Robert. "Microsoft Achieves World Domination (in OCSP Stapling)". Netcraft Ltd. Retrieved 28 April 2014.
  • ^ HAProxy website
  • ^ Release Note: BIG-IP LTM and TMOS 11.6.0
  • ^ "lighttpd 1.4.56 release info". redmine.lighttpd.net.
  • ^ The Problem with OCSP Stapling
  • ^ Apache OCSP bug
  • ^ Nginx OCSP bug
  • ^ Improving Revocation - MozillaWiki, retrieved 2014-04-28
  • ^ "How Certificate Revocation Works". TechNet. Microsoft. 16 March 2012. Retrieved 28 April 2014.
  • ^ "Issue 361820: Check For Server Certificate Revocation checkbox is confusing". Google Code. 10 April 2014.
  • ^ The smtp transport, retrieved 2015-01-24
  • ^ Main configuration, retrieved 2015-01-24
  • ^ Mozilla NSS Bug 360420, Comment by Adam Langley
  • ^ Mozilla NSS Bug 611836 - Implement multiple OCSP stapling extension
  • ^ Pettersen, Yngve N. (June 2013). "The Transport Layer Security (TLS) Multiple Certificate Status Request Extension". Internet Engineering Task Force. Retrieved 31 October 2014.
  • ^ "OCSP stapling (GnuTLS 3.7.4)".

  • Retrieved from "https://en.wikipedia.org/w/index.php?title=OCSP_stapling&oldid=1224339146"

    Categories: 
    Certificate revocation
    Cryptographic protocols
    Internet Standards
    Internet protocols
    Transport Layer Security
    Hidden categories: 
    Articles with short description
    Short description matches Wikidata
     



    This page was last edited on 17 May 2024, at 19:50 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki