Earlier quoted context omitted.
No, the owners of the vulnerable keys are by all appearances unrelated.
Huh, I did my back of the envelope wrong when I first decided that wasn't plausible. Here is a better back of the envelope. Suppose that we're using a random number generator that has 4 billion possible internal states. (We're using a C integer under the hood.) Suppose that we're having it generate random 256 bit integers, which we then test for primality. The probability of these integers being prime is about 1/log(…
Flaw found in online encryption method
31–37 of 37 posts
Re: Flaw found in online encryption method
#32Would it be valuable to set up a service that could check your public keys against a database of others checking for common factors? Or just better to fix the entropy problems and assume the problem doesn't exist anymore?
If they built such a service to let people test their own public keys, the service would actually provide a much bigger service to attackers than it would to users.
Public keys are public, right? There are huge LDAP databases out there just brimming with certificates (i.e. signed public keys) just waiting to be harvested. And most of the people whose certificates are in these databases would not be paying attention to this news, but an attacker certainly would.
You probably see where this is going.
Re: Flaw found in online encryption method
#33interesting that they were able to identify that there was bug without being able to say what it was or how it happened.
But without knowing the bug, there is still the enormous vulnerability; pretty much anyone else could do what they have done, crack these keys, and MITM any of the sites that use them.
So, they could have kept quiet, tried to track down who had generated the keys, try to track down how they had generated the keys, and see if there is a problem. But the longer they do that, the more people they'll have to contact, the more likely it is that word will leak out, and the more likely it is that someone nefarious could use this information to their advantage.
By making a big announcement about it, they let everyone know now. Everyone knows to start looking at these keys. They will likely notify any CAs that they can identify of the bad keys that they have found so that they can be revoked (though they have mentioned that finding contact information has sometimes been difficult). Yes, it means that we don't really know how this happened; but it does mean that a lot more people will probably start auditing their entropy sources and pseudo-random number generators to make sure they are working properly.
Re: Flaw found in online encryption method
#34Earlier quoted context omitted.
As far as I can tell, this is what they're doing: if two different keys have a factor in common (i.e. A=PQ, B=PR), then you can use Euclid's algorithm (which just requires repeated subtraction, and is thus really easy) to find P (=gcd(A,B)), and then just use division to find Q (=A/P) and R (=B/P) easily. So what the researchers did, apparently, was to gather all the RSA public keys they could find (6 million or so)…
Is it possible/likely that many of these bad pairs are from this debian/openssl bug? http://taint.org/2008/05/13/153959a.html
Re: Flaw found in online encryption method
#35Re: Flaw found in online encryption method
#36Would it be valuable to set up a service that could check your public keys against a database of others checking for common factors? Or just better to fix the entropy problems and assume the problem doesn't exist anymore?
I think the original article alludes to this but doesn't say it explicitly: If they built such a service to let people test their own public keys, the service would actually provide a much bigger service to attackers than it would to users. Public keys are public, right? There are huge LDAP databases out there just brimming with certificates (i.e. signed public keys) just waiting to be harvested. And most of the peop…
You know (pub,priv). They know either (pub,priv) or (pub).
Essentially, make use of your unique (probably!) ability to sign something with your private key.
There's the issue of traffic analysis which needs to be solved - they have to reveal to you whether the key is compromised, and there's only two possible answers, so they have to be careful not to reveal it to in the traffic metadata.
Re: Flaw found in online encryption method
#37Earlier quoted context omitted.
I think the original article alludes to this but doesn't say it explicitly: If they built such a service to let people test their own public keys, the service would actually provide a much bigger service to attackers than it would to users. Public keys are public, right? There are huge LDAP databases out there just brimming with certificates (i.e. signed public keys) just waiting to be harvested. And most of the peop…
Couldn't the service allow you to check your private keys, rather than check a public key, without transmitting the actual key. You know (pub,priv). They know either (pub,priv) or (pub). Essentially, make use of your unique (probably!) ability to sign something with your private key. There's the issue of traffic analysis which needs to be solved - they have to reveal to you whether the key is compromised, and there's…