Commit 112ba880 authored by Mark J. Cox's avatar Mark J. Cox
Browse files

http_protocol: Fix escaping of Expect error message

       +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
parent dc2a05ec
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
                                                         -*- coding: utf-8 -*-
Changes with Apache 2.0.57
  *) 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)
+0 −7
Original line number Diff line number Diff line
@@ -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. ]
+1 −1
Original line number Diff line number Diff line
@@ -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",