Linus Torvalds Interview for LinuxFR
linuxfr.org
Linus Torvalds Interview for LinuxFR
1–10 of 57 posts
Re: Linus Torvalds Interview for LinuxFR
#2Re: Linus Torvalds Interview for LinuxFR
#3Re: Linus Torvalds Interview for LinuxFR
#4Re: Linus Torvalds Interview for LinuxFR
#5Almost all browsers will show a warning about the certificate… Link without https : http://linuxfr.org/nodes/85904/comments/1230981
It's not as good as one signed by an ostensibly trusted CA, but it's strictly better than plain HTTP (no sniffing, harder MITM, etc) - so why not present it to the user the same way that plain HTTP is?
The conspiracy theorist in me wonders if trusted CAs 'lobby' browser vendors to make it so?
Re: Linus Torvalds Interview for LinuxFR
#6Almost all browsers will show a warning about the certificate… Link without https : http://linuxfr.org/nodes/85904/comments/1230981
Off-topic, but does anyone know why browsers go crazy about self signed certs? It's not as good as one signed by an ostensibly trusted CA, but it's strictly better than plain HTTP (no sniffing, harder MITM, etc) - so why not present it to the user the same way that plain HTTP is? The conspiracy theorist in me wonders if trusted CAs 'lobby' browser vendors to make it so?
Basically, self-signed certificates can't be revoked in case of a security breach.
There's an excellent resume of the discussion of the subject at Mozilla : http://www.gerv.net/security/self-signed-certs/
Re: Linus Torvalds Interview for LinuxFR
#7Almost all browsers will show a warning about the certificate… Link without https : http://linuxfr.org/nodes/85904/comments/1230981
Off-topic, but does anyone know why browsers go crazy about self signed certs? It's not as good as one signed by an ostensibly trusted CA, but it's strictly better than plain HTTP (no sniffing, harder MITM, etc) - so why not present it to the user the same way that plain HTTP is? The conspiracy theorist in me wonders if trusted CAs 'lobby' browser vendors to make it so?
The browser should jump up and down when encountering such a certificate as it's exactly how an attempted MITM attack would look.
Re: Linus Torvalds Interview for LinuxFR
#8Earlier quoted context omitted.
Off-topic, but does anyone know why browsers go crazy about self signed certs? It's not as good as one signed by an ostensibly trusted CA, but it's strictly better than plain HTTP (no sniffing, harder MITM, etc) - so why not present it to the user the same way that plain HTTP is? The conspiracy theorist in me wonders if trusted CAs 'lobby' browser vendors to make it so?
It's explained on the Wikipedia entry : http://en.wikipedia.org/wiki/Self-signed_certificate Basically, self-signed certificates can't be revoked in case of a security breach. There's an excellent resume of the discussion of the subject at Mozilla : http://www.gerv.net/security/self-signed-certs/
Can you think of any counter examples? (Note: I'm a security noob - so I'm asking out of sincere curiosity).
Re: Linus Torvalds Interview for LinuxFR
#9Earlier quoted context omitted.
It's explained on the Wikipedia entry : http://en.wikipedia.org/wiki/Self-signed_certificate Basically, self-signed certificates can't be revoked in case of a security breach. There's an excellent resume of the discussion of the subject at Mozilla : http://www.gerv.net/security/self-signed-certs/
Any attack I can think of that exploits that fact would work at least as easily on plain HTTP. And there are a large class of attacks that work on plain HTTP but not with a self signed cert. Can you think of any counter examples? (Note: I'm a security noob - so I'm asking out of sincere curiosity).
Still there is good reason that browsers rub it in the users face when a site tries to use a self-signed certificate. The user has to be really really sure that this is expected (it is like the SSH "the remote host key has changed" warnings).
Re: Linus Torvalds Interview for LinuxFR
#10Earlier quoted context omitted.
Off-topic, but does anyone know why browsers go crazy about self signed certs? It's not as good as one signed by an ostensibly trusted CA, but it's strictly better than plain HTTP (no sniffing, harder MITM, etc) - so why not present it to the user the same way that plain HTTP is? The conspiracy theorist in me wonders if trusted CAs 'lobby' browser vendors to make it so?
Self-signed certificates don't prevent MITM attacks on connecting unless you've transmitted the certificate securely out-of-band and installed it in the client's browser. (which practically never happens with sites on the open internet) They only prevent tampering with the connection once it's established. The browser should jump up and down when encountering such a certificate as it's exactly how an attempted MITM a…
I don't know if browsers do this, but in principle they could even notify the user on certificate change, so the MITM would have to be on the first connection to a site.