¡Pregunte, nosotros le respondemos!

Disable SSLv2 in Apache (httpd)

SSLv2 is no longer used standard for years, and is usually installed to support for legacy products only. However, it can also pose a significant security risk, so we strongly recommend to disable it.

This article will walk you through disabling SSLv2 and enabling SSLv3 or TLSv1 in Apache.

  • Connect via SSH using an application such as Putty


  • Using an editor (nano, vi, pico) edit /etc/httpd/conf.d/ssl.conf


  • Find SSLProtocol and set as SSLProtocol -ALL +SSLv3 +TLSv1


  • Save the file
  • Restart Apache; "service httpd restart"


  • Execute this command and make sure you get an error
    openssl s_client –ssl2 –connect localhost:443


  • Execute this command which should connect successfully
    openssl s_client –ssl3 –connect localhost:443





?Tiene más preguntas? ?Escribanos!

Acepto

Haciendo clic en "Acepto", confirma que ha leído y aceptado los Términos y condiciones, la Política de privacidad, y la Política de devolución del sitio web.

>