Change Dovecot to use 2048, or higher, dhparam
Open Discussion
See recommendations at https://weakdh.org/sysadmin.html Get all RPM config files to implement Diffie-Hellman 2048
See recommendations at https://weakdh.org/sysadmin.html Get all RPM config files to implement Diffie-Hellman 2048
Open a ticket with cPanel Support. You can replace the cipher keys manually for the moment to resolve this.
Open a ticket with cPanel Support. You can replace the cipher keys manually for the moment to resolve this.
Please provide more specifics. To my knowledge we don't provide any RPMs that would need such a change. We provide configuration interfaces for a variety of services (e.g. Apache, FTP) that allow setting stricter SSL Cipher suites, and disabling older protocols. Without telling us specifically what you want we are unable to do anything with this request (other than close it).
Please provide more specifics. To my knowledge we don't provide any RPMs that would need such a change. We provide configuration interfaces for a variety of services (e.g. Apache, FTP) that allow setting stricter SSL Cipher suites, and disabling older protocols. Without telling us specifically what you want we are unable to do anything with this request (other than close it).
It is not about the cipher you can set, it is about the DH group key
size. Having strong cipher is one part, the scond is having strong keys
which need a strong DH key size.
The standard group key size (also with Cpanel) is 1024 which is not secure.
You can generate a new group key size with
openssl dhparam -out dhparams.pem 2048
and then generate all SSL keys new but it would be of course much better if Cpanel already just switch the size to 2048 from the start on.
It is not about the cipher you can set, it is about the DH group key
size. Having strong cipher is one part, the scond is having strong keys
which need a strong DH key size.
The standard group key size (also with Cpanel) is 1024 which is not secure.
You can generate a new group key size with
openssl dhparam -out dhparams.pem 2048
and then generate all SSL keys new but it would be of course much better if Cpanel already just switch the size to 2048 from the start on.
It appears Dovecot is what needs updated.
It appears Dovecot is what needs updated.
Is a new option not enough:
ssl_dh_parameters_length = 2048
for dovecot 2.2.x
(and in the future:)
for 2.3.x and up
ssl_dh=</path/to/dh.pem with a correct dh.pem file.
see:
https://wiki.dovecot.org/SSL/DovecotConfiguration#line-112
Is a new option not enough:
ssl_dh_parameters_length = 2048
for dovecot 2.2.x
(and in the future:)
for 2.3.x and up
ssl_dh=</path/to/dh.pem with a correct dh.pem file.
see:
https://wiki.dovecot.org/SSL/DovecotConfiguration#line-112
Replies have been locked on this page!