Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Commit

Permalink
Issue #188 Logjam Vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
shawniverson committed May 24, 2015
1 parent ddc7d88 commit 594e125
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Issue #175 Enhancement - Set keyboard layout at beginning of EFA-Init
Issue #177 Enhancement - Correct EFA to new clamav paths using EPEL
Issue #178 Enhancement - EFA MailWatch Unicode Support
Issue #186 Bug - Unbound full recursion support
Issue #188 Bug - Logjam Vulnerability

EFA-Update enhanced fault tolerance
EPEL Repository is now enabled
Expand Down
5 changes: 5 additions & 0 deletions build/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ func_postfix () {
# Issue #167 Change perms on /etc/postfix/sasl_passwd to 600
chmod 0600 /etc/postfix/sasl_passwd

# Logjam Vulnerability #188
openssl dhparam -out /etc/postfix/ssl/dhparam.pem 2048
postconf -e "smtpd_tls_dh1024_param_file = /etc/postfix/ssl/dhparam.pem"
postconf -e "smtpd_tls_ciphers = low"

echo "pwcheck_method: auxprop">/usr/lib64/sasl2/smtpd.conf
echo "auxprop_plugin: sasldb">>/usr/lib64/sasl2/smtpd.conf
echo "mech_list: PLAIN LOGIN CRAM-MD5 DIGEST-MD5">>/usr/lib64/sasl2/smtpd.conf
Expand Down
6 changes: 6 additions & 0 deletions update/versions/EFA-Version-Upgrade-3.0.0.8-beta
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,12 @@ function run_update() {
rm -f /usr/local/share/perl5/Mail/SpamAssassin/Util/RegistrarBoundaries.pm
cp $STAGING/Files/RegistrarBoundaries.pm /usr/local/share/perl5/Mail/SpamAssassin/Util/RegistrarBoundaries.pm

# Logjam Vulnerability #188
openssl dhparam -out /etc/postfix/ssl/dhparam.pem 2048
postconf -e "smtpd_tls_dh1024_param_file = /etc/postfix/ssl/dhparam.pem"
postconf -e "smtpd_tls_ciphers = low"
service postfix reload

service clamd start
# Force update clam dbs
/usr/bin/freshclam
Expand Down

0 comments on commit 594e125

Please sign in to comment.