gr0x0rd Guru
Joined: 12 Aug 2006 Posts: 311
|
Posted: Tue Mar 09, 2010 6:52 pm Post subject: Disabling weak ssl ciphers in apache [solved] |
|
|
Hello all,
I'm going through the fun task of making one of my servers PCI compliant so it can begin processing electronic payments.
One of the conditions was to eliminate SSLv2 support; this was easy enough, in my /etc/apache2/httpd.conf I simply added Code: | SSLProtocol -all +TLSv1 +SSLv3 | However, after running an SSL check (such as the one at serversniff.net) I noticed that the server was still allowing weak 56 and 40 bit ciphers.
After some RTFM and a few examples around the web, I added the following directive: Code: | SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM | However... my server is still supporting those weak ciphers. In fact, apache doesn't seem to change its behavior, no matter what I put in this line, almost like it's being ignored entirely.
Any ideas? I'm running apache 2.2.14-r1 and openssl 0.9.8l-r2.
Thanks as always. _________________ ~g
emerge -FML...
Last edited by gr0x0rd on Wed Mar 10, 2010 1:49 am; edited 1 time in total |
|