summaryrefslogtreecommitdiffstats
path: root/config.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-10-01 07:14:52 +0200
committerlpsolit%gmail.com <>2005-10-01 07:14:52 +0200
commit9910fc71adca449eeec373ffab40815aeb01776d (patch)
treece93f85f0bd4ba570762c0a3578be322079eb5b0 /config.cgi
parent5a10048e9e65885ce54ef3a36af70cdd3d0252c8 (diff)
downloadbugzilla-9910fc71adca449eeec373ffab40815aeb01776d.tar.gz
bugzilla-9910fc71adca449eeec373ffab40815aeb01776d.tar.xz
Bug 308256: [SECURITY] config.cgi doesn't check Param('requirelogin') - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'config.cgi')
-rwxr-xr-xconfig.cgi50
1 files changed, 35 insertions, 15 deletions
diff --git a/config.cgi b/config.cgi
index a21fc7843..8e293d510 100755
--- a/config.cgi
+++ b/config.cgi
@@ -32,9 +32,8 @@ use strict;
# Include the Bugzilla CGI and general utility library.
use lib qw(.);
require "globals.pl";
-
-# Retrieve this installation's configuration.
-GetVersionTable();
+use Bugzilla;
+use Bugzilla::Constants;
# Suppress "used only once" warnings.
use vars
@@ -53,7 +52,18 @@ use vars
# Use the global template variables defined in globals.pl
# to generate the output.
-use vars qw($template $vars);
+use vars qw($vars);
+
+my $user = Bugzilla->login(LOGIN_OPTIONAL);
+
+# If the 'requirelogin' parameter is on and the user is not
+# authenticated, return empty fields.
+if (Param('requirelogin') && !$user->id) {
+ display_data();
+}
+
+# Retrieve this installation's configuration.
+GetVersionTable();
# Pass a bunch of Bugzilla configuration to the templates.
$vars->{'priority'} = \@::legal_priority;
@@ -65,7 +75,7 @@ $vars->{'resolution'} = \@::legal_resolution;
$vars->{'status'} = \@::legal_bug_status;
# Include a list of product objects.
-$vars->{'products'} = Bugzilla->user->get_selectable_products;
+$vars->{'products'} = $user->get_selectable_products;
# Create separate lists of open versus resolved statuses. This should really
# be made part of the configuration.
@@ -81,15 +91,25 @@ $vars->{'closed_status'} = \@closed_status;
# Generate a list of fields that can be queried.
$vars->{'field'} = [Bugzilla->dbh->bz_get_field_defs()];
-# Determine how the user would like to receive the output;
-# default is JavaScript.
-my $cgi = Bugzilla->cgi;
-my $format = $template->get_format("config", scalar($cgi->param('format')),
- scalar($cgi->param('ctype')) || "js");
+display_data($vars);
+
+
+sub display_data {
+ my $vars = shift;
-# Return HTTP headers.
-print "Content-Type: $format->{'ctype'}\n\n";
+ my $cgi = Bugzilla->cgi;
+ my $template = Bugzilla->template;
-# Generate the configuration file and return it to the user.
-$template->process($format->{'template'}, $vars)
- || ThrowTemplateError($template->error());
+ # Determine how the user would like to receive the output;
+ # default is JavaScript.
+ my $format = $template->get_format("config", scalar($cgi->param('format')),
+ scalar($cgi->param('ctype')) || "js");
+
+ # Return HTTP headers.
+ print "Content-Type: $format->{'ctype'}\n\n";
+
+ # Generate the configuration file and return it to the user.
+ $template->process($format->{'template'}, $vars)
+ || ThrowTemplateError($template->error());
+ exit;
+}