Logjam Vulnerability

Questions and answers about how to do stuff
Post Reply
User avatar
shawniverson
Posts: 3783
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Logjam Vulnerability

Post by shawniverson »

Starting a thread on the Logjam Vulnerability.

I am currently researching and will post results and how-to here. :ugeek:
User avatar
shawniverson
Posts: 3783
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Re: Logjam Vulnerability

Post by shawniverson »

Apache already has DH 2048bit and export ciphers disabled. No action needed here. Apache is not vulnerable in EFA to logjam

Postfix is vulnerable.

To fix weak DH key:

Generate a 2048bit Diffie-Hellman key

Code: Select all

sudo openssl dhparam -out /etc/postfix/ssl/dhparam.pem 2048
Add the DH key to postfix:

Code: Select all

sudo postconf -e "smtpd_tls_dh1024_param_file = /etc/postfix/ssl/dhparam.pem"
More info located here:
http://postfix.1071664.n5.nabble.com/Di ... 63096.html

To disable export ciphers:

Code: Select all

sudo postconf -e "smtpd_tls_ciphers = low"

Code: Select all

sudo service postfix reload
User avatar
shawniverson
Posts: 3783
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Re: Logjam Vulnerability

Post by shawniverson »

Post Reply