summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorTony Finch <fanf@apache.org>2001-01-24 02:05:47 +0100
committerTony Finch <fanf@apache.org>2001-01-24 02:05:47 +0100
commit73baa4f319874ccdf732fdc12b5b307ed72d8920 (patch)
treeb740058f48b551ea7b2e2981a7f170bf34137105 /CHANGES
parentFix the search form to interface to the new search engine. (diff)
downloadapache2-73baa4f319874ccdf732fdc12b5b307ed72d8920.tar.xz
apache2-73baa4f319874ccdf732fdc12b5b307ed72d8920.zip
Relax the checking of Host: headers so that only character sequences that
are sensitive to the filesystem are rejected, i.e. forward slashes, backward slashes, and sequences of more than one dot. This supports iDNS without compromising the safety of mass vhosting. PR: 6635 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87803 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 57e784235f..dcfb1a59b0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
Changes with Apache 2.0b1
+ *) Relax the syntax checking of Host: headers in order to support
+ iDNS. PR#6635 [Tony Finch]
+
*) Cleanup the byterange filter to use the apr_brigade_partition
and apr_bucket_copy functions. This removes a lot of very messy
code, and hopefully makes this filter more stable.