]> 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:31:28 +0000 (08:31 +0000)
committerMark J. Cox <mjc@apache.org>
Wed, 19 Apr 2006 08:31:28 +0000 (08:31 +0000)
       +1: mjc, trawick, rpluem, jim

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

CHANGES
STATUS
modules/http/http_protocol.c

diff --git a/CHANGES b/CHANGES
index f7171f085cab99b8b96b83354b0fa38e0e0035a5..1710b7d2271c74083ba782a0102a51516d5b3012 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,8 +1,13 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.0.57
 
-Changes with Apache 2.0.56
+  *) 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]
     
+Changes with Apache 2.0.56
+
   *) SECURITY: CVE-2005-3357 (cve.mitre.org)
      mod_ssl: Fix a possible crash during access control checks if a
      non-SSL request is processed for an SSL vhost (such as the
diff --git a/STATUS b/STATUS
index c164d827703001a3da24484fbbf6e69daea2e0ff..8c0a38ca75c25427b407b0e65cc0cadffb790d1f 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -107,13 +107,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.0.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 a523be9e432e6daccf567ee3e769b95974a3840c..543f4d1555c2719e8b30eaa380e26289acf797c5 100644 (file)
@@ -2268,7 +2268,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",