As reported by Slashdot, MS issued an update to ASP.NET to fix the hash collision attack today. (Listed as "Collisions in HashTable May Cause DoS Vulnerability - CVE-2011-3414" on the linked Technet page.)

The problem is that the POST data are converted into a hash table that uses a known hashing algorithm. And if an attacker uses this by crafting a request that contains lots of collisions, he can easily cause a Denial of Service.

Does anyone know how exactly does that update fix the issue?

link|improve this question

I would expect that they just used a better hash algorithm, but I'm not sure and haven't seen any details anywhere. – Dan Dec 29 '11 at 20:27
Could also be they introduced some random parameter into the algorithm. – Niklas B. Dec 29 '11 at 20:32
this might help you ....<weblogs.asp.net/scottgu/archive/2011/12/28/…; – Salman Aziz Dec 29 '11 at 21:59
@salman That page does not describe how the issue was fixed, only that a patch is available. – Richard Szalay Dec 29 '11 at 22:03
I don't understand why this is closed as a question that is not constructive. The question could be perfectly answered using facts and references. Maybe all relevant facts are not yet publically known, but that isn't a reason to close the question, or is it? – Stephan Tolksdorf Dec 31 '11 at 12:39
show 1 more comment
feedback

closed as not constructive by Dan J, John Saunders, casperOne Dec 30 '11 at 23:13

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

The update is not a complete fix, but rather a workaround. It limits the number of POST parameters accepted.

link|improve this answer
3  
How did you find that out? Do you have some source? – svick Dec 29 '11 at 22:09
Guys that presented this vulnerability gave this information. – Peri Dec 30 '11 at 23:53
2  
@Peri and where did they do that? – svick Dec 31 '11 at 1:32
Here are the slides events.ccc.de/congress/2011/Fahrplan/events/4680.en.html and here is the video mirror.fem-net.de/CCC/28C3/mp4-h264-HQ/… – Peri Dec 31 '11 at 10:24
The will be a update, but for now we can use the solution proposed here stackoverflow.com/questions/8696718/… – Sergio Garcia Jan 2 at 6:48
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.