Information
A cipher suite includes a set of algorithms used when making secure TLS connections. Strong cipher suites contain more secure algorithms.
WebSphere Liberty provides groups of different strength cipher suites to use for the TLS handshake. The highest cipher group or a custom cipher list should be used for secure communication.
Solution
Add the securityLevel attribute to all ssl elements to ${server.config.dir}/configDropins/overrides/*.xml and set the value to HIGH Also add the enforceCipherOrder attribute and set the value to true
<ssl ...
securityLevel="HIGH" enforceCipherOrder="true" />
Or add the enabledCiphers attribute to all ssl elements to ${server.config.dir}/configDropins/overrides/*.xml and set the value to space separated list of appropriate strong ciphers in the preferred order. For example,
<ssl ...
enabledCiphers="TLS_AES_256_GCM_SHA384 SSL_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 SSL_ECDHE_RSA_WITH_AES_256_GCM_SHA384" enforceCipherOrder="true" />