In SSL labs, I got that I'm using this "weak cipher":
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Now in Apache, this is the set of suites I have enabled:
SSLCipherSuite ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384
To that list above, I tried adding !ECDHE-RSA-AES256-CBC-SHA384
, but that didn't help. I also tried adding !CBC
, and that doesn't fix the problem in SSL Labs either. What should I do to disable this cipher?
I'm on Debian Buster. The Apache version I'm using is 2.4.38-3+deb10u3
. Everything is up-to-date.