Secure Your Apache Server in 2024: Achieving an A+ Rating on Qualys SSL Labs

Ensure the security of your Apache server with these comprehensive best practices for TLS configuration. By following these steps, you can earn an A+ rating on Qualys SSL Labs and protect your website from potential threats in the coming year.

Jan 2nd, 2024 by Nicolas Béguier

In this article, we will provide expert tips on how to enhance the security of your Apache web server. We will cover key areas such as system security, SSL/TLS security, and data security. By following these best practices, you can aim for an A+ rating on Qualys SSL Labs and protect your server from potential threats.

One objective can be to have a grade of A+ on Qualys SSL Labs.
SSL Labs A+ rating

1. Basic security

Minimizing the amount of data that is revealed to potential attackers is a key way to safeguard your web server. This can include details such as the version number of Apache, PHP, and the operating system. This type of information is often included in HTTP headers, but it can be hidden to better protect your server. To achieve this:

# Hide server version on error pages
ServerSignature Off
# Only return Apache in server header
ServerTokens Prod

Using TLS 1.2 and TLS 1.3 on an apache server is important because these versions of the TLS protocol provide stronger security features and improved performance compared to older versions. Some of the key benefits of using TLS 1.2 and TLS 1.3 include:

  • Stronger encryption: TLS 1.2 and TLS 1.3 use stronger encryption algorithms and key lengths to protect data transmitted over the internet.
  • Improved performance: TLS 1.2 and TLS 1.3 are designed to be more efficient than older versions of the TLS protocol, which can result in faster connection times and improved overall performance.
  • Improved security: TLS 1.2 and TLS 1.3 include additional security features, such as Perfect Forward Secrecy, which helps to prevent an attacker from using previously recorded traffic to decrypt current traffic.

Overall, using TLS 1.2 and TLS 1.3 helps to protect the confidentiality, integrity, and availability of data transmitted over the internet, and it is an important security measure for any server that handles sensitive information.

SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1

2. Cipher Suite

There are four main types of encryption algorithms:
  • Key exchange
  • Authentication
  • Block encryption
  • Message Authentication

Some of these algorithms, such as RC4, DH, 3DES, and EXP, should be avoided due to their lower levels of security. It is important to prioritize the use of more secure algorithms in order to balance security with accessibility for customers.

For more information on the security of different cipher suites, you can refer to the following link: https://ciphersuite.info/

# Compilation of the top cipher suites 2024
# https://ssl-config.mozilla.org/#server=apache
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305

3. Optimization

The "SSLHonorCipherOrder" directive tells the server to use its own list of preferred ciphers, rather than relying on the client to specify them.

# Perfect Forward Secrecy(PFS) is frequently compromised without this
SSLHonorCipherOrder on

The "SSLSessionTickets" directive is used to disable the use of SSL session tickets, which are used to resume SSL sessions and improve performance.

SSLSessionTickets off

The "SSLSessionCacheTimeout" and "SSLSessionCache" directives enable SSL session caching, which helps to improve performance by allowing the server to reuse previously established SSL sessions.

# Enable SSL session caching for improved performance
SSLSessionCacheTimeout 300
SSLSessionCache "shmcb:/usr/local/apache2/logs/ssl_scache(512000)"

The "SSLUseStapling" and "SSLStaplingCache" directives enable OCSP (Online Certificate Status Protocol) stapling, which is a method of checking the revocation status of SSL certificates without the need for a separate request to the certificate authority. This helps to improve performance by reducing the number of requests that need to be made.

# OCSP stapling
SSLUseStapling on
SSLStaplingCache "shmcb:logs/ssl_stapling(32768)"

4. Security headers

The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised in the Content-Type headers should be followed and not be changed. The header allows you to avoid MIME type sniffing by saying that the MIME types are deliberately configured.

Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross-Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft, to site defacement, to malware distribution. This CSP configuration is highly secure, but it is recommended to test it first to ensure that it does not block third party scripts. CSP Evaluator is an excellent tool for testing your CSP configuration.

The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) informs browsers that the site should only be accessed using HTTPS, and that any future attempts to access it using HTTP should automatically be converted to HTTPS.

# Security headers
## X-Content-Type-Options: avoid MIME type sniffing
Header always set X-Content-Type-Options nosniff;

## Content-Security-Policy (CSP): Yes
## No 'script-src' directive, you need to test it yourself
Header always set Content-Security-Policy "object-src 'none'; base-uri 'none'; require-trusted-types-for 'script'; frame-ancestors 'self';";
## The safest CSP, only block your website to be inside an inframe
Header always set Content-Security-Policy "frame-ancestors 'self';";

## Strict Transport Security (HSTS): Yes
Header always set Strict-Transport-Security "max-age=31536000; includeSubdomains; preload";

5. DH Param

Diffie-Hellman (DH) is a cryptographic algorithm used to establish a shared secret between two parties. It's commonly used in various cryptographic protocols to ensure secure communications over an untrusted network, such as the internet. DH parameters, often simply termed "DH params", play an essential role in this process.

It's crucial for security reasons that these parameters are generated in a strong and robust manner. Specifically, the size of the DH group (measured in bits) directly influences the strength of the cryptographic operation. Modern best practices recommend using a 4096-bit DH group for most applications.

To generate a 4096-bits DH group using the OpenSSL toolkit, you can use the following command:

# Generate 4096-bits DH group
openssl dhparam -out /etc/ssl/certs/dhparam.pem 4096

After generating the DH parameters, you might want to inspect or verify them. To check the content and details of the generated DH group, use

openssl dh -in /etc/ssl/certs/dhparam.pem -text

Once you've generated the DH params, you need to integrate them into your server configuration to use them. For servers running Apache, the directive is `SSLOpenSSLConfCmd`. Here's how you can specify the path to the DH params in the server configuration:

SSLOpenSSLConfCmd DHParameters "/etc/ssl/certs/dhparam.pem"

Complete configuration

GitHub GIST Link

Conclusion

In conclusion, it is vital to prioritize the security of your Apache web server in order to protect your website and its users from potential threats. By following best practices such as minimizing the amount of data revealed to attackers, using secure encryption algorithms, and implementing security headers and cipher suites, you can significantly enhance the security of your server. It is important to regularly review and update your security measures to stay ahead of evolving threats and to maintain the trust of your users. By taking these steps, you can help to ensure the safety and integrity of your web server and the sensitive data it handles.

Evaluate your configuration using the following link: https://www.ssllabs.com/ssltest/analyze.html

If you enjoyed this story, please recommend and share to help others find it! Feel free to contact me if you have any questions.