Skip to the content.
« Session Management Vulnerabilities

TLS Vulnerabilities

Insufficient peer certificate verification

This is not an issue that is specific to web applications, but it is (or was, prior to Erlang/OTP 26) the most common TLS-related vulnerability. For background please refer to ssl chapter in the Secure Coding and Deployment Hardening Guidelines.

In web applications this issue is most commonly seen in interactions with external APIs over HTTPS. The exact configuration options necessary to enable server certificate validation varies by HTTP / API client. When using Erlang/OTP 26 or later, most clients should correctly verify the server’s certificate. On older versions, consider using a Mint-based HTTP client, such as Finch. Verify the client’s behaviour using a test site such as badssl.com.

Weak TLS versions, ciphers and other options

The TLS protocol has evolved over the years and most servers support a range of protocol versions and cipher configurations. The exact recommendations for hardening a TLS server are beyond the scope of this document, please refer to Mozilla’s recommendations and tools such as SSL Labs.

When offloading TLS to an external load balancer or proxy, check out Mozilla’s SSL Configuration Generator, but also check the configuration implementations on the Plug / Phoenix application itself (Misconfigured TLS offload).

When terminating TLS using the web server that host the Plug / Phoenix application, such as Cowboy or Bandit, check out the Plug.SSL.configure/1 function: it may be used to select a predefined TLS hardening profile based on OWASP’s and Mozilla’s recommendations. In a Phoenix application the cipher_suite option in the Endpoint’s https configuration may be used to select a profile.

Misconfigured TLS offload

When TLS is terminated by an external load balancer or proxy, rather than the Plug / Phoenix application itself, the request arrives to the application over plain HTTP. The Plug.Conn struct contains a field, scheme, that indicates whether the request was received over HTTP or HTTPS, which may be inspected by other plugs. If this field is not set correctly it can lead to bugs and even security issues.

Standard plugs and functions that inspect the scheme field include:

When offloading TLS, make sure to configure the load balancer or proxy to inject the X-Forwarded-Proto header to indicate the actual scheme that the client used. The Plug / Phoenix application can then update the scheme field accordingly, as follows:

Downgrade attacks

An application that is only available over HTTPS, not over plain HTTP, protects user information in-flight by encrypting the request and response data using TLS. However, if an attacker can trick a user into visiting the application’s URL with HTTP instead of HTTPS, they may be able to intercept such requests even if the server itself is not reachable over plain HTTP. This could expose e.g. the user’s sign-in credentials.

To prevent such downgrade attacks, configure the server to send the HTTP Strict-Transport-Security response header. This informs the browser that the application should only ever be loaded over HTTPS, blocking downgrade attacks with a plain HTTP URL. Plug.SSL and the Phoenix force_ssl Endpoint configuration take an hsts option that defaults to true.

Next: Information Leakage »