]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
http_protocol: Fix escaping of Expect error message
authorMark J. Cox <mjc@apache.org>
Wed, 19 Apr 2006 08:33:19 +0000 (08:33 +0000)
committerMark J. Cox <mjc@apache.org>
Wed, 19 Apr 2006 08:33:19 +0000 (08:33 +0000)
+1: mjc, trawick, rpluem, jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@395173 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/http/http_protocol.c

diff --git a/CHANGES b/CHANGES
index 231b312070ebd663e02fb4ab9f2dfab349220205..b652b4b7f254fb2d668e23f308301a4afc3d353d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,11 @@
                                                         -*- coding: utf-8 -*-
 Changes with Apache 2.2.2
 
+  *) HTML-escape the Expect error message.  Not classed as security as
+     an attacker has no way to influence the Expect header a victim will
+     send to a target site.  Reported by Thiago Zaninotti
+     <thiango nstalker.com>. [Mark Cox]
+
   *) htdbm: Warn the user when adding a plaintext password on a platform
      where it wouldn't work with the server (i.e., anywhere that has
      crypt()).  [Jeff Trawick]
diff --git a/STATUS b/STATUS
index 202503637134ea5dfb3ea33a23b9d66c2100273d..abd06305893acb265ba86be7773295da0b68a328 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -71,13 +71,6 @@ CURRENT RELEASE NOTES:
 
 RELEASE SHOWSTOPPERS:
 
-    * http_protocol: Fix escaping of Expect error message
-        Trunk version of patch:
-          http://svn.apache.org/viewcvs?rev=394965&view=rev
-        2.2.x version of patch:
-          Trunk version with changed offsets
-       +1: mjc, trawick, rpluem, jim
-
 
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
index 46ee7e6eb9d1e3a28b799d488bfb321f9e9ed24e..a1ae981883416e2791842e84440b9b7671efe8ba 100644 (file)
@@ -996,7 +996,7 @@ static const char *get_canned_error_string(int status,
                            "request-header"
                            "\nfield could not be met by this server.</p>\n"
                            "<p>The client sent<pre>\n    Expect: ",
-                           apr_table_get(r->headers_in, "Expect"),
+                           ap_escape_html(r->pool, apr_table_get(r->headers_in, "Expect")),
                            "\n</pre>\n"
                            "but we only allow the 100-continue "
                            "expectation.</p>\n",