]> granicus.if.org Git - apache/commit
Add an option to enforce stricter HTTP conformance
authorStefan Fritsch <sf@apache.org>
Sun, 30 Dec 2012 01:23:24 +0000 (01:23 +0000)
committerStefan Fritsch <sf@apache.org>
Sun, 30 Dec 2012 01:23:24 +0000 (01:23 +0000)
commitf726113d3346126b972776296131d5b1026ce807
treeeffc57d94dacd2656af76361d2f30749e076adc1
parent304f1d01bc2e5f33c653461e4193ae1a2b0f94af
Add an option to enforce stricter HTTP conformance

This is a first stab, the checks will likely have to be revised.
For now, we check

 * if the request line contains control characters
 * if the request uri has fragment or username/password
 * that the request method is standard or registered with RegisterHttpMethod
 * that the request protocol is of the form HTTP/[1-9]+.[0-9]+,
   or missing for 0.9
 * if there is garbage in the request line after the protocol
 * if any request header contains control characters
 * if any request header has an empty name
 * for the host name in the URL or Host header:
   - if an IPv4 dotted decimal address: Reject octal or hex values, require
     exactly four parts
   - if a DNS host name: Reject non-alphanumeric characters besides '.' and
     '-'. As a side effect, this rejects multiple Host headers.
 * if any response header contains control characters
 * if any response header has an empty name
 * that the Location response header (if present) has a valid scheme and is
   absolute

If we have a host name both from the URL and the Host header, we replace the
Host header with the value from the URL to enforce RFC conformance.

There is a log-only mode, but the loglevels of the logged messages need some
thought/work. Currently, the  checks for incoming data log for 'core' and the
checks for outgoing data log for 'http'. Maybe we need a way to configure the
loglevels separately from the core/http loglevels.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1426877 13f79535-47bb-0310-9956-ffa450edef68
CHANGES
include/ap_mmn.h
include/http_core.h
include/httpd.h
modules/http/http_filters.c
server/core.c
server/protocol.c
server/util.c
server/vhost.c