Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: SSL Hardining |
|
Author |
|
andrew.luke
Joined: 15 Feb 2011 Posts: 2
|
Posted: Tue 15 Feb '11 23:14 Post subject: SSL Hardining |
|
|
I have a requirement to restrict apache http server to only accept strong SSL connections with clients. In the httpd.conf I have the line:
SSLCipherSuite RSA:!EXP:!NULL:+HIGH:-MEDIUM:-LOW
My security scanner is still failing me because I still accept "DES-CBC3-MD5 (SSLv2). Anyone know how to modify that directive to not accept this encryption also? |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
|
Back to top |
|
tdonovan Moderator
Joined: 17 Dec 2005 Posts: 611 Location: Milford, MA, USA
|
Posted: Wed 16 Feb '11 13:35 Post subject: |
|
|
Two things might help you adjust your cipher suite.
The instructions here
In you Apache bin directory: check that the openssl program is here, and execute this command with your cipher string:
Code: | openssl ciphers -v "RSA:!EXP:!NULL:+HIGH:-MEDIUM:-LOW" |
Note that DES-CBC3-MD5 uses "Triple-DES" (i.e. 3DES) with 168-bit keys, which is actually a very strong cipher.
You are probably trying to avoid DES, not 3DES. If your security scanner does not recognize the difference, that would seem to be a bug in your security scanner.
If you really want to, you can avoid Triple-DES with this string: Code: | RSA:!EXP:!NULL:+HIGH:-MEDIUM:-LOW:-3DES | but note that you are excluding a very strong cipher which many browsers use.
Hope this helps,
-tom- |
|
Back to top |
|
andrew.luke
Joined: 15 Feb 2011 Posts: 2
|
Posted: Wed 16 Feb '11 22:39 Post subject: |
|
|
Thanks guys! That was able to fix it without breaking it. I know it may be stupid, or possibly a bug, but I have to do everything I can to eliminate findings without breaking it. |
|
Back to top |
|
|
|
|
|
|