Nginx doesn't suck at SSL after all
1–10 of 112 posts
Re: Nginx doesn't suck at SSL after all
#2Either way -- based on his attitude in the first post, I'm really surprised by how Matt owned up and did his homework for this one. (He should have done it from the beginning, of course, but none of the people bashing him in the previous thread actually provided anything to support what they were saying.)
Re: Nginx doesn't suck at SSL after all
#3Re: Nginx doesn't suck at SSL after all
#4Clearly the moral of the story is: "Don't claim that X sucks unless you are are damn sure".
Saying something sucks is fightin' words. Don't expect to people be nice if you are wrong.
Re: Nginx doesn't suck at SSL after all
#5In regards to this post, if this is the default configuration of Nginx then I agree that Nginx sucks. This is not a good default configuration for the Internet.
Re: Nginx doesn't suck at SSL after all
#6In the normal protocol, if you lose the RSA key, an attacker can retroactively decrypt the session keys, which are protected only by that same RSA key.
In ephemeral DH mode, instead of encrypting a session key with RSA, both sides run the Diffie Hellman protocol to exchange a key†. DH allows two unrelated parties who share no secrets to exchange a secret in public; it's kind of magical. But it's also trivial to man-in-the-middle. To get around that problem, ephemeral Diffie Hellman mode in SSL/TLS signs the DH exchange with the RSA key.
The win here is that losing the RSA key now only allows you to MITM future SSL/TLS connections. This is still a disaster, but it does not allow you to retroactively unwind previous DH exchanges and decrypt earlier captured sessions.
† DH is unbelievably simple; go read the Wikipedia page.
Re: Nginx doesn't suck at SSL after all
#7I can't tell if this is an apology or a non-apology. It seems to have elements of both. Clearly the moral of the story is: "Don't claim that X sucks unless you are are damn sure". Saying something sucks is fightin' words. Don't expect to people be nice if you are wrong.
Re: Nginx doesn't suck at SSL after all
#8Re: Nginx doesn't suck at SSL after all
#9It's also good to have thick skin. HN can be aggressive. But for good reason. I'd be willing to bet this tiny sting will result in more rigor in the future. I know it has worked that way for me.
Re: Nginx doesn't suck at SSL after all
#10So Nginx got unwarranted hate for having the most secure defaults. That sucks. I hope the user nginxorg -- whom I assume is Igor Sysoev -- who dropped by the previous thread ( http://news.ycombinator.com/item?id=2752136 ), sees this post too. Either way -- based on his attitude in the first post, I'm really surprised by how Matt owned up and did his homework for this one. (He should have done it from the beginning, o…