- Aug 15, 2008
-
-
Jim Jagielski authored
* Ensure that the SSL filters are not inserted on FTP data connections even if the virtual host that causes the proxy request has SSL enabled. Submitted by: rpluem Reviewed by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686393 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
query that has consecutive '+' characters in the QUERY_STRING, matching the behavior of mod_cgi. Trunk version of patch: http://svn.apache.org/viewvc?rev=682389&view=rev http://svn.apache.org/viewvc?rev=682475&view=rev Backport version for 2.2.x of patch: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/generators/mod_cgid.c?r1=682475&r2=682389 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686392 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
* Remove call to apr_reslist_destroy. With the latest trunk version of apr-util this causes a lock during shutdown as at the point of time we would execute apr_reslist_destroy the reslist is already destroyed, because we are in a cleanup of the same pool where the reslist registered itself as precleanup. With apr-util 1.3.x calling apr_reslist_destroy is not really useful and needed in this case as we are in a cleanup that was registered against the same pool that is used by the reslist. As it was registered *after* the reslist was created it just runs *before* the reslist cleanup would run. This is somewhat pointless here and we could leave the job of destroying the reslist to the reslist cleanup. Submitted by: rpluem Reviewed by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686390 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686388 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686386 13f79535-47bb-0310-9956-ffa450edef68
-
Nilgun Belma Buguner authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@686269 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 12, 2008
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@685208 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@685161 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
directory, too. We really need to consolidate the mod_rewrite guides a little more, so that there's not this duplication. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@685145 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
in the guide, but in this context, it's just confusing. I assume that Ralf just copied rules out of his config files on his own servers, and they made sense in that context. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@685144 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 11, 2008
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684906 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 10, 2008
-
-
Nilgun Belma Buguner authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684428 13f79535-47bb-0310-9956-ffa450edef68
-
Nilgun Belma Buguner authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684416 13f79535-47bb-0310-9956-ffa450edef68
-
Nilgun Belma Buguner authored
Translated by: Nilgün Belma Bugüner <nilgun belgeler.org> Reviewed by: Orhan Berent <berent belgeler.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684412 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 09, 2008
-
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684346 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684344 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
* Fix bogus explanation of timeout parameter * Improve timeout documentation even more Submitted by: rpluem Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684343 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684316 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684300 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
particular apr stat call. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684268 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 08, 2008
-
-
Ruediger Pluem authored
* Prevent Header edit from processing only the first header it should edit and deleting the remaining ones by iterating over all headers with the same name. PR: 45333 Submitted by: rpluem Reviewed by: rpluem, niq, mturk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684100 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@684098 13f79535-47bb-0310-9956-ffa450edef68
-
Mladen Turk authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683861 13f79535-47bb-0310-9956-ffa450edef68
-
Thomas J. Donovan authored
* mod_rewrite: Preserve the query string when [proxy,noescape] PR 45247 Submitted by: tdonovan Reviewed by: rpluem, niq, tdonovan git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683816 13f79535-47bb-0310-9956-ffa450edef68
-
Thomas J. Donovan authored
* mod_rewrite: Preserve the query string when [proxy,noescape] PR 45247 Submitted by: tdonovan Reviewed by: rpluem, niq, tdonovan git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683813 13f79535-47bb-0310-9956-ffa450edef68
-
Thomas J. Donovan authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683809 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 07, 2008
-
-
Ruediger Pluem authored
* Move nonce field inside the html form. PR: 45578 Submitted by: rpluem Reviewed by: rpluem, covener, jorton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683686 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683685 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683648 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683647 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683530 13f79535-47bb-0310-9956-ffa450edef68
-
Thomas J. Donovan authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683465 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 06, 2008
-
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683380 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683379 13f79535-47bb-0310-9956-ffa450edef68
-
Nilgun Belma Buguner authored
submitted by: Lucien GENTIS <lucien.gentis lorraine.iufm.fr> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683338 13f79535-47bb-0310-9956-ffa450edef68
-
Thomas J. Donovan authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683233 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@683222 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 05, 2008
-
-
Ruediger Pluem authored
* Prevent XSS attacks when using wildcards in the path of the FTP URL. Discovered by Marc Bevand of Rapid7. CVE: CVE-2008-2939 Submitted by: rpluem Reviewed by: rpluem, mjc, jim, jorton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@682870 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@682656 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 04, 2008
-
-
Eric Covener authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@682494 13f79535-47bb-0310-9956-ffa450edef68
-