[issue17872] Crash in marshal.load() with bad reader

2013-07-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: commit review -> committed/rejected status: pending -> closed ___ Python tracker ___ ___ Pytho

[issue17872] Crash in marshal.load() with bad reader

2013-07-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> commit review status: open -> pending ___ Python tracker ___ ___

[issue17872] Crash in marshal.load() with bad reader

2013-07-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset fc7bab8a8618 by Serhiy Storchaka in branch '3.3': Issue #17872: Fix a segfault in marshal.load() when input stream returns http://hg.python.org/cpython/rev/fc7bab8a8618 New changeset 5fa793ae36cc by Serhiy Storchaka in branch 'default': Issue #17872

[issue17872] Crash in marshal.load() with bad reader

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone review a patch please? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue17872] Crash in marshal.load() with bad reader

2013-05-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: And here is a fix. -- assignee: -> serhiy.storchaka keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file30322/marshal_bad_reader.patch ___ Python tracker

[issue17872] Crash in marshal.load() with bad reader

2013-05-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- type: behavior -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue17872] Crash in marshal.load() with bad reader

2013-04-29 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue17872] Crash in marshal.load() with bad reader

2013-04-29 Thread Dmi Baranov
Changes by Dmi Baranov : -- nosy: +dmi.baranov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue17872] Crash in marshal.load() with bad reader

2013-04-29 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: There is a buffer overflow in marshal.load() when len(read(n)) > n. Here is a sample. -- components: Interpreter Core files: marshal_bad_reader.py messages: 188107 nosy: serhiy.storchaka priority: normal severity: normal stage: needs patch status: o