How can I disable insecure 112 bit cipher suite in a java application server, specifically these ones:
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
TLS_RSA_WITH_3DES_EDE_CBC_SHA
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
TLS_RSA_WITH_3DES_EDE_CBC_SHA
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
TLS_RSA_WITH_3DES_EDE_CBC_SHA
I have edited the java.security
file and added jdk.tls.disabledAlgorithms=SSLv3, MD5withRSA, DH keySize < 2048
, but still these algorithms are listed.
I also want to prevent downgrade attacks by disabling TLS_FALLBACK_SCSV
.
How can I do this?