Re: OpenID/Debian PRNG/DNS Cache poisoning advisory
- To: "Leichter, Jerry" <leichter_jerrold@xxxxxxx>
- Subject: Re: OpenID/Debian PRNG/DNS Cache poisoning advisory
- From: Eric Rescorla <ekr@xxxxxxxxxxxxxxxxxxxx>
- Date: Fri, 08 Aug 2008 13:33:18 -0700
- Cc: Nicolas Williams <Nicolas.Williams@xxxxxxx>, Eric Rescorla <ekr@xxxxxxxxxxxxxxxxxxxx>, Dan Kaminsky <dan@xxxxxxxxxxx>, Dave Korn <dave.korn@xxxxxxxxxx>, "'Ben Laurie'" <benl@xxxxxxxxxx>, bugtraq@xxxxxxxxxxxxxxxxx, security@xxxxxxxxxx, "'OpenID List'" <general@xxxxxxxxxx>, cryptography@xxxxxxxxxxxx, full-disclosure@xxxxxxxxxxxxxxxxx
- In-reply-to: <Pine.SOL.4.61.0808081545260.5498@mental>
- List-help: <mailto:bugtraq-help@securityfocus.com>
- List-id: <bugtraq.list-id.securityfocus.com>
- List-post: <mailto:bugtraq@securityfocus.com>
- List-subscribe: <mailto:bugtraq-subscribe@securityfocus.com>
- List-unsubscribe: <mailto:bugtraq-unsubscribe@securityfocus.com>
- Mailing-list: contact bugtraq-help@xxxxxxxxxxxxxxxxx; run by ezmlm
- References: <1b587cab0808080350s30eb231fqf204a5cd5739fa9f@xxxxxxxxxxxxxx> <20080808150625.54F2D50846@xxxxxxxxxxxxxx> <001e01c8f974$2d675b50$9601a8c0@xxxxxxxxxxxxxx> <20080808165730.7761450846@xxxxxxxxxxxxxx> <489C85D9.6080803@xxxxxxxxxxx> <20080808182015.B7DE350846@xxxxxxxxxxxxxx> <20080808193309.GP25547@xxxxxxx> <Pine.SOL.4.61.0808081545260.5498@mental>
- User-agent: Wanderlust/2.14.0 (Africa) Emacs/21.3 Mule/5.0 (SAKAKI)
At Fri, 8 Aug 2008 15:52:07 -0400 (EDT),
Leichter, Jerry wrote:
>
> | > > Funnily enough I was just working on this -- and found that we'd
> | > > end up adding a couple megabytes to every browser. #DEFINE
> | > > NONSTARTER. I am curious about the feasibility of a large bloom
> | > > filter that fails back to online checking though. This has side
> | > > effects but perhaps they can be made statistically very unlikely,
> | > > without blowing out the size of a browser.
> | > Why do you say a couple of megabytes? 99% of the value would be
> | > 1024-bit RSA keys. There are ~32,000 such keys. If you devote an
> | > 80-bit hash to each one (which is easily large enough to give you a
> | > vanishingly small false positive probability; you could probably get
> | > away with 64 bits), that's 320KB. Given that the smallest Firefox
> | > [...]
> You can get by with a lot less than 64 bits. People see problems like
> this and immediately think "birthday paradox", but there is no "birthday
> paradox" here: You aren't look for pairs in an ever-growing set,
> you're looking for matches against a fixed set. If you use 30-bit
> hashes - giving you about a 120KB table - the chance that any given
> key happens to hash to something in the table is one in a billion,
> now and forever. (Of course, if you use a given key repeatedly, and
> it happens to be that 1 in a billion, it will hit every time. So an
> additional table of "known good keys that happen to collide" is worth
> maintaining. Even if you somehow built and maintained that table for
> all the keys across all the systems in the world - how big would it
> get, if only 1 in a billion keys world-wide got entered?)
I don't believe your math is correct here. Or rather, it would
be correct if there was only one bad key.
Remember, there are N bad keys and you're using a b-bit hash,
which has 2^b distinct values. If you put N' entries in the
hash table, the probability that a new key will have the
same digest as one of them is N'/(2^b). If b is sufficiently
large to make collisions rare, then N'=~N and we get
N/(2^b).
To be concrete, we have 2^15 distinct keys, so, the
probability of a false positive becomes (2^15)/(2^b)=2^(b-15).
To get that probability below 1 billion, b+15 >= 30, so
you need about 45 bits. I chose 64 because it seemed to me
that a false positive probability of 2^{-48} or so was better.
-Ekr