diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2002-07-09 11:22:19 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2002-07-09 11:22:19 +0000 |
commit | f3cc6576b2a80c4a5c2583d357038d38c9960f47 (patch) | |
tree | 57d2482462a261d410f58e3bb1f18a5d2e3037dc /www/apache22/files | |
parent | 914d8e6f31f6477424f05b82aa9b2b73fc78cc59 (diff) | |
download | ports-f3cc6576b2a80c4a5c2583d357038d38c9960f47.tar.gz ports-f3cc6576b2a80c4a5c2583d357038d38c9960f47.zip |
- Add a patch for a bug on infinite loop in HTTP_IN
filter that allows DoS attack.
- Bump PORTREVISION
- Change maintainer address
Obtained from: Apache Group CVS (rev 1.150-1.151)
Notes
Notes:
svn path=/head/; revision=62692
Diffstat (limited to 'www/apache22/files')
-rw-r--r-- | www/apache22/files/patch-modules:http:http_request.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/www/apache22/files/patch-modules:http:http_request.c b/www/apache22/files/patch-modules:http:http_request.c new file mode 100644 index 000000000000..e44aa29391f7 --- /dev/null +++ b/www/apache22/files/patch-modules:http:http_request.c @@ -0,0 +1,10 @@ +--- modules/http/http_request.c.orig 26 Jun 2002 19:45:06 -0000 1.150 ++++ modules/http/http_request.c 27 Jun 2002 04:40:47 -0000 1.151 +@@ -383,8 +383,6 @@ + f = f->next; + } + +- ap_add_input_filter("HTTP_IN", NULL, new, new->connection); +- + apr_table_setn(new->subprocess_env, "REDIRECT_STATUS", + apr_itoa(r->pool, r->status)); |