diff options
author | Mark Sapiro <mark@msapiro.net> | 2016-07-14 14:27:49 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2016-07-14 14:27:49 -0700 |
commit | 6efea059931995de8713f35bccc1116905175cf2 (patch) | |
tree | 6f7933394fc09ef5e495b24a558ca9c2a5f983f0 /Mailman/Cgi/options.py | |
parent | de6ffbe5a0ce37751247b071b75aa7c8e6605c58 (diff) | |
download | mailman2-6efea059931995de8713f35bccc1116905175cf2.tar.gz mailman2-6efea059931995de8713f35bccc1116905175cf2.tar.xz mailman2-6efea059931995de8713f35bccc1116905175cf2.zip |
Catch TypeError from certain defective crafted POST requests.
Diffstat (limited to 'Mailman/Cgi/options.py')
-rw-r--r-- | Mailman/Cgi/options.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py index cdc2bef3..38b34fd1 100644 --- a/Mailman/Cgi/options.py +++ b/Mailman/Cgi/options.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2015 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -108,7 +108,17 @@ def main(): # we might have a 'language' key in the cgi data. That was an explicit # preference to view the page in, so we should honor that here. If that's # not available, use the list's default language. - language = cgidata.getvalue('language') + try: + language = cgidata.getvalue('language') + except TypeError: + # Someone crafted a POST with a bad Content-Type:. + doc.AddItem(Header(2, _("Error"))) + doc.AddItem(Bold(_('Invalid options to CGI script.'))) + # Send this with a 400 status. + print 'Status: 400 Bad Request' + print doc.Format() + return + if not Utils.IsLanguage(language): language = mlist.preferred_language i18n.set_language(language) |