I'm running a server that requires a blacklist of weak cipher suites.
So which of the following are weak? http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider
|
I'm running a server that requires a blacklist of weak cipher suites. So which of the following are weak? http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider |
|||
|
|
Why do you need to exclude the bad ones? Why not only include the good ones? For starters, I'd follow the NSA Suite B guidelines, specifically RFC 5430 |
|||||||||||
|
BlacklistI think the anonymous modes are unequivocally useless:
As are the deliberately hobbled "export" suites:
I assume you want encryption, which rules out the "null" cipher:
I don't think the HMAC algorithm allows the known weaknesses of MD5 to be exploited, but when in doubt, throw it out:
Key size for the DES is too small:
The Kerberos exchange is only applicable if you are running Kerberos, which is unlikely, and you would know it if you were:
I usually throw out RC4, because it isn't necessary and I'm not totally comfortable with it.
The AES is strong enough with 128-bit keys, and there are some results against 256-bit keys that could be extended in the future:
Elliptical Curve algorithms might be the best key agreement there is, but unfortunately, putting them into practice is difficult. Interoperability problems around named curve support in Java are common, and real CA's are not yet issuing EC certs. So, sadly, the EC algorithms aren't easily implemented yet:
WhitelistAre you sure that Jetty doesn't support a white list? That is different from every other SSL setup I've seen. Usually, not only do you provide a whitelist, but the list is ordered, with the most preferred algorithms first. You likely have an RSA certificate, in which case I'd order the residue like this:
If you have a DSA certificate, the list would look like this:
|
||||
|
|
Pretty sure Jetty is blacklist.
Anyways my issue is solved. Thanks |
||||
|
|
|
Versions after 7.0.2 of Jetty now include a whitelist feature for cipher suites. Just add a section to your etc/jetty-ssl.xml like the following:
Doing so will automatically blacklist any cipher suites that aren't listed in this section. |
|||
|
|