diff options
author | Mark Sapiro <mark@msapiro.net> | 2017-06-04 18:52:11 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2017-06-04 18:52:11 -0700 |
commit | 845dc52970be426af2a766be4609a8bef2bd1c05 (patch) | |
tree | 4038a5648ba9b95a8eb8b5362fcb522e7f92043e /Mailman/Cgi/options.py | |
parent | bdba0e977c9d6e7a69c722a1074f89082c1632b4 (diff) | |
download | mailman2-845dc52970be426af2a766be4609a8bef2bd1c05.tar.gz mailman2-845dc52970be426af2a766be4609a8bef2bd1c05.tar.xz mailman2-845dc52970be426af2a766be4609a8bef2bd1c05.zip |
Fixed a regression in Cgi/options.py.
Diffstat (limited to 'Mailman/Cgi/options.py')
-rw-r--r-- | Mailman/Cgi/options.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py index faf732da..0bfa510a 100644 --- a/Mailman/Cgi/options.py +++ b/Mailman/Cgi/options.py @@ -110,7 +110,17 @@ def main(): # CSRF check safe_params = ['displang-button', 'language', 'email', 'password', 'login', 'login-unsub', 'login-remind', 'VARHELP', 'UserOptions'] - params = cgidata.keys() + try: + params = cgidata.keys() + 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 set(params) - set(safe_params): csrf_checked = csrf_check(mlist, cgidata.getvalue('csrf_token')) else: @@ -124,17 +134,7 @@ 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. - 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 - + language = cgidata.getvalue('language') if not Utils.IsLanguage(language): language = mlist.preferred_language i18n.set_language(language) |