Cory Benfield added the comment:

The easiest way to 'fix' the DoS problem is to throw an exception if an invalid 
header is parsed. That's a backwards-compatibility problem though: things that 
previously 'worked' now won't. That presumably limits the ability to back-apply 
this fix to 2.7.7.

An alternative option is to speculatively attempt to parse the next line for 
headers or the end of the header block. I'm not sure this is a great idea: at 
this stage all we know is that the header block is malformed, so it's not clear 
that 'doing our best' is a good idea either, especially since that attitude got 
us here to begin with.

The best 'middle of the road' option is to abort message parsing at this stage 
without throwing an exception. This leads to truncated headers and no body, 
where previously we'd have got truncated headers and a body that potentially 
included the missing headers. We could also potentially add a warning about the 
problem.

Are there any preferences for a fix here, or a better solution than the above 
(none of which I'm wild about)?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19996>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to