Update of /cvsroot/mailman/mailman/Mailman/Queue
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21986

Modified Files:
        ArchRunner.py 
Log Message:
add OverflowError in exceptions. (CVE-2005-4153 related but not DoS)


Index: ArchRunner.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Queue/ArchRunner.py,v
retrieving revision 2.10
retrieving revision 2.11
diff -u -d -r2.10 -r2.11
--- ArchRunner.py       28 Aug 2005 05:31:27 -0000      2.10
+++ ArchRunner.py       3 Feb 2006 08:12:14 -0000       2.11
@@ -49,7 +49,7 @@
                 elif abs(now - mktime_tz(tup)) > \
                          mm_cfg.ARCHIVER_ALLOWABLE_SANE_DATE_SKEW:
                     clobber = 1
-            except ValueError:
+            except (ValueError, OverflowError):
                 # The likely cause of this is that the year in the Date: field
                 # is horribly incorrect, e.g. (from SF bug # 571634):
                 # Date: Tue, 18 Jun 0102 05:12:09 +0500

_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to