HeartBleed Vulnerability Guidance
Posted: 11 Apr 2014 17:40
Fellow EFA Users,
EFA is built on open source and uses OpenSSL. OpenSSL may be in use in your EFA environment if you are sending/receiving secure emails or are using HTTPS to secure your EFA.
Please run the following:
The version that you need after updating should be at least this version or higher:
1.0.1e-16.el6_5.7
Also, you should rekey your public certificates, if used, or generate a new self-signed certificate
Also, be sure to change your passwords on your EFA too 
EFA is built on open source and uses OpenSSL. OpenSSL may be in use in your EFA environment if you are sending/receiving secure emails or are using HTTPS to secure your EFA.
Please run the following:
Code: Select all
sudo yum -y install openssl
1.0.1e-16.el6_5.7
Also, you should rekey your public certificates, if used, or generate a new self-signed certificate
Code: Select all
sudo cp /etc/pki/tls/private/localhost.key /etc/pki/tls/private/localhost.key.old
sudo cp /etc/pki/tls/certs/localhost.crt /etc/pki/tls/certs/localhost.crt.old
sudo openssl req -new -x509 -key /etc/pki/tls/private/localhost.key -out /etc/pki/tls/certs/localhost.crt
service httpd restart
