Skip to content

Latest commit

 

History

History
76 lines (46 loc) · 6.79 KB

File metadata and controls

76 lines (46 loc) · 6.79 KB
layout title permalink description
page
Technical Guidelines
/technical-guidelines/
Technical guidelines relating to HTTPS strength and quality.

This page covers some relevant technical concepts relevant to the strength and quality of a server's HTTPS configuration.

SSL and TLS

HTTPS today uses Transport Layer Security, or TLS. TLS is a network protocol that establishes an encrypted connection to an authenticated peer over an untrusted network.

Earlier, less secure versions of this protocol were called Secure Sockets Layer, or SSL).

SSL and TLS perform the same function, and TLS is a direct successor and replacement for TLS. Because of its early ubiquity, "SSL" is frequently used today to generically refer to TLS/HTTPS. However, all versions of SSL as a protocol are now considered insecure for modern use.

The major versions of SSL/TLS in use today are:

Typically, browsers and servers support multiple versions, and will attempt to negotiate the strongest mutually supported version.

It is possible for an attacker to interfere with the negotiation process and attempt to "downgrade" connections to the oldest mutually supported version.

A downgrade attack can be prevented by using TLS Fallback SCSV, a TLS extension proposed in 2014 and which is enabled by default in newer versions of OpenSSL.

For more details of NIST recommendations, read NIST Special Publication 800-52.

Forward secrecy

Forward secrecy protects information sent over an encrypted HTTPS connection now from being decrypted later, even if the server's private key is later compromised.

In non-forward-secret HTTPS connections, if an attacker records encrypted traffic between a website and its visitors, and later obtains the website's private key, that key can be used to decrypt all past recorded traffic.

In forward secret connections, the server and client create a temporary key for every new session that gets effectively "thrown away" after the session is complete. This means that even if the server's base private key is compromised, an attacker can't retroactively decrypt information.

In TLS, forward secrecy is provided by choosing ciphersuites that include the Ephemeral Diffie-Hellman (DHE) and Ephemeral Elliptic Curve Diffie–Hellman (ECDHE) key exchanges.

Signature algorithms

The HTTPS/TLS security model uses "certificates" to guarantee authenticity. These certificates are cryptographically "signed" by a trusted certificate authority.

The certificate authority's trusted root certificate (which is included with your OS or browser) is used to sign an intermediary certificate, which is used to sign your website's certificate. There may be more than one intermediary certificate in the chain.

A part of the signature process is computing a "hash" of the data included in the certificate. This can be done using a standard hashing algorithm, such as SHA-1 or SHA-2.

SHA-1 has been shown to have serious weaknesses, and so browser and OS providers like Google, Microsoft, and Mozilla have announced timelines to deprecate SHA-1 in favor of the SHA-2 family of algorithms.

While details on browser and OS policies vary, site owners should generally consider SHA-1 to be unsupported by January 2017.

RC4

There are a number of ciphers available to a TLS connection, and one of those is RC4 (also known as ARC4 or ARCFOUR). RC4 was a popular cipher due to being a fast cipher which was not vulnerable to the BEAST attack. However, in 2013 it was announced that RC4 had a serious flaw that would make it possible for a determined attacker to decrypt data encrypted with RC4 in TLS.

Due to the serious flaw in RC4, and the fact that the BEAST attack has been mitigated by all modern browsers, all HTTPS sites should be configured to use ciphers other than RC4.