diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2006-07-27 17:06:13 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2006-07-27 17:06:13 +0000 |
commit | a67dc52df524e752da083127a8e685e88c8ef50a (patch) | |
tree | 02ea70e44761333eea4653aa786ccf4e6bcb7f7b /www/apache13-modssl | |
parent | 10fe46491f1daf2611df88b5aa0c010ffc8aee5b (diff) | |
download | ports-a67dc52df524e752da083127a8e685e88c8ef50a.tar.gz ports-a67dc52df524e752da083127a8e685e88c8ef50a.zip |
Notes
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/Makefile | 2 | ||||
-rw-r--r-- | www/apache13-modssl/files/patch-CVE-2006-3747 | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/www/apache13-modssl/Makefile b/www/apache13-modssl/Makefile index a949a0dd0749..237a37727b45 100644 --- a/www/apache13-modssl/Makefile +++ b/www/apache13-modssl/Makefile @@ -7,7 +7,7 @@ PORTNAME= apache+mod_ssl PORTVERSION= ${VERSION_APACHE}+${VERSION_MODSSL} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= www security MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ ${MASTER_SITES_MODSSL:S/$/:mod_ssl/} \ diff --git a/www/apache13-modssl/files/patch-CVE-2006-3747 b/www/apache13-modssl/files/patch-CVE-2006-3747 new file mode 100644 index 000000000000..215c7abced59 --- /dev/null +++ b/www/apache13-modssl/files/patch-CVE-2006-3747 @@ -0,0 +1,11 @@ +--- src/modules/standard/mod_rewrite.c (revision 421288) ++++ src/modules/standard/mod_rewrite.c (working copy) +@@ -2736,7 +2736,7 @@ + int c = 0; + + token[0] = cp = ap_pstrdup(p, cp); +- while (*cp && c < 5) { ++ while (*cp && c < 4) { + if (*cp == '?') { + token[++c] = cp + 1; + *cp = '\0'; |