mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
What can I do about Weak Diffie-Hellman and the Logjam Attack #181
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @maxisme on GitHub (Jan 4, 2017).
What can I do about this?
I ran https://www.ssllabs.com/ssltest/analyze.html on a domain with the certificates generated by
dehydrated.And the NGINX config:
And I got a B because of the key exchange:
@dorelo commented on GitHub (Jan 4, 2017):
Consider generating stronger DH parameters than Nginx's default 1024 bits.
openssl dhparam -out /etc/nginx/dhparam.pem 2048then add the line
ssl_dhparam /etc/nginx/dhparam.pem;to your nginx config(s).It is possible to up the size to 4096 bits, 2048 is a generally safe size.
You should also consider setting your preferred protocols and cipher suites:
Useful resource: https://mozilla.github.io/server-side-tls/ssl-config-generator/
@maxisme commented on GitHub (Jan 4, 2017):
A