]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 15980: Password is no longer shown in the location bar on the first page...
authorjustdave%syndicomm.com <>
Fri, 8 Jun 2001 03:26:37 +0000 (03:26 +0000)
committerjustdave%syndicomm.com <>
Fri, 8 Jun 2001 03:26:37 +0000 (03:26 +0000)
Patch by Dave Miller <justdave@syndicomm.com>
r= jake@acutex.net

CGI.pl
process_bug.cgi

diff --git a/CGI.pl b/CGI.pl
index 0980366bddb27d865511c015c10cc943642f20af..138e52414a262a2b2bb7679467e80c56a6b05471 100644 (file)
--- a/CGI.pl
+++ b/CGI.pl
@@ -20,6 +20,7 @@
 # Contributor(s): Terry Weissman <terry@mozilla.org>
 #                 Dan Mosedale <dmose@mozilla.org>
 #                 Joe Robins <jmrobins@tgix.com>
+#                 Dave Miller <justdave@syndicomm.com>
 
 # Contains some global routines used throughout the CGI scripts of Bugzilla.
 
@@ -914,9 +915,14 @@ Content-type: text/html
            $nexturl = $&;
         }
         my $method = "POST";
-        if (defined $ENV{"REQUEST_METHOD"} && length($::buffer) > 1) {
-            $method = $ENV{"REQUEST_METHOD"};
-        }
+# We always want to use POST here, because we're submitting a password and don't
+# want to see it in the location bar in the browser in case a co-worker is looking
+# over your shoulder.  If you have cookies off and need to bookmark the query, you
+# can bookmark it from the screen asking for your password, and it should still
+# work.  See http://bugzilla.mozilla.org/show_bug.cgi?id=15980
+#        if (defined $ENV{"REQUEST_METHOD"} && length($::buffer) > 1) {
+#            $method = $ENV{"REQUEST_METHOD"};
+#        }
         print "
 <FORM action=$nexturl method=$method>
 <table>
index 81f6846b89f5dc4a5ea95f199415198a7de45d94..1b02b7b0c64040283595f85396d82d4904d38b0a 100755 (executable)
@@ -724,8 +724,14 @@ The changes made were:
         $::FORM{'delta_ts'} = $delta_ts;
         print "<li><form method=post>";
         foreach my $i (keys %::FORM) {
-            my $value = value_quote($::FORM{$i});
-            print qq{<input type=hidden name="$i" value="$value">\n};
+            # Make sure we don't include the username/password fields in the
+            # HTML.  If cookies are off, they'll have to reauthenticate after
+            # hitting "submit changes anyway".
+            # see http://bugzilla.mozilla.org/show_bug.cgi?id=15980
+            if ($i !~ /^(Bugzilla|LDAP)_(login|password)$/) {
+              my $value = value_quote($::FORM{$i});
+              print qq{<input type=hidden name="$i" value="$value">\n};
+            }
         }
         print qq{<input type=submit value="Submit my changes anyway">\n};
         print " This will cause all of the above changes to be overwritten";