Última actividad 6 months ago

Revisión 6135d96815ddc89708697fd66e352f65544a7293

10-ssl.conf Sin formato
1# this is a dovecot config snippet, inclide me into /etc/dovecot/local.conf
2# SSL protocols to use
3ssl_protocols = !SSLv2 !SSLv3
4# for checking that service
5openssl s_client -connect <hostname>:143 -starttls imap -ssl3
fix_apache2.sh Sin formato
1cat <<EOF >> /etc/apache2/conf.d/x_disable_SSLv3.conf
2<IfModule mod_ssl.c>
3SSLProtocol all -SSLv2 -SSLv3
4</IfModule>
5EOF
6/etc/init.d/apache2 restart
7# for checking that service
8testssl.sh --poodle <vHost> | grep POODLE
haproxy.conf Sin formato
1# this is a haproxy config snippet, include me into /etc/haproxy/haproxy.conf
2bind :443 ssl crt <crt> ciphers <ciphers> no-sslv3
3# for checking that service
4testssl.sh --poodle <vHost> | grep POODLE
main.cf Sin formato
1# this is a postfix config snippet, include me into /etc/postfix/main.cf
2smtp_tls_protocols=!SSLv2,!SSLv3
3smtp_tls_mandatory_protocols=!SSLv2,!SSLv3
4smtpd_tls_protocols=!SSLv2,!SSLv3
5smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3
6# for checking that service
7openssl s_client -connect <hostname>:25 -starttls smtp -ssl3
ssl.conf Sin formato
1# this is a nginx config snippet, put me into /etc/nginx/conf.d
2ssl_session_cache shared:SSL:10m;
3ssl_session_timeout 10m;
4ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
5# for checking that service
6testssl.sh --poodle <vHost> | grep POODLE