diff options
author | dougb <dougb@FreeBSD.org> | 2011-05-28 00:21:28 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2011-05-28 00:21:28 +0000 |
commit | ced7835c06b507528a27a1ef54de7f2533a2200c (patch) | |
tree | b74697c394b9c5dace073b5174bc5cb33161ac8b /contrib/bind9/lib/dns/include/dst | |
parent | f187cb5ae2a428062327dc2d4300a55564e91ed0 (diff) | |
download | FreeBSD-src-ced7835c06b507528a27a1ef54de7f2533a2200c.zip FreeBSD-src-ced7835c06b507528a27a1ef54de7f2533a2200c.tar.gz |
Upgrade to 9.6-ESV-R4-P1, which address the following issues:
1. Very large RRSIG RRsets included in a negative cache can trigger
an assertion failure that will crash named (BIND 9 DNS) due to an
off-by-one error in a buffer size check.
This bug affects all resolving name servers, whether DNSSEC validation
is enabled or not, on all BIND versions prior to today. There is a
possibility of malicious exploitation of this bug by remote users.
2. Named could fail to validate zones listed in a DLV that validated
insecure without using DLV and had DS records in the parent zone.
Add a patch provided by ru@ and confirmed by ISC to fix a crash at
shutdown time when a SIG(0) key is being used.
Diffstat (limited to 'contrib/bind9/lib/dns/include/dst')
-rw-r--r-- | contrib/bind9/lib/dns/include/dst/Makefile.in | 2 | ||||
-rw-r--r-- | contrib/bind9/lib/dns/include/dst/gssapi.h | 2 | ||||
-rw-r--r-- | contrib/bind9/lib/dns/include/dst/lib.h | 2 | ||||
-rw-r--r-- | contrib/bind9/lib/dns/include/dst/result.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bind9/lib/dns/include/dst/Makefile.in b/contrib/bind9/lib/dns/include/dst/Makefile.in index 4ed4ec0..2a98703 100644 --- a/contrib/bind9/lib/dns/include/dst/Makefile.in +++ b/contrib/bind9/lib/dns/include/dst/Makefile.in @@ -13,7 +13,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.4 2007/12/11 20:28:55 marka Exp $ +# $Id: Makefile.in,v 1.4 2007-12-11 20:28:55 marka Exp $ srcdir = @srcdir@ VPATH = @srcdir@ diff --git a/contrib/bind9/lib/dns/include/dst/gssapi.h b/contrib/bind9/lib/dns/include/dst/gssapi.h index 446b76d..0a468d3 100644 --- a/contrib/bind9/lib/dns/include/dst/gssapi.h +++ b/contrib/bind9/lib/dns/include/dst/gssapi.h @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: gssapi.h,v 1.9.332.2 2009/01/18 23:47:41 tbox Exp $ */ +/* $Id: gssapi.h,v 1.9.332.2 2009-01-18 23:47:41 tbox Exp $ */ #ifndef DST_GSSAPI_H #define DST_GSSAPI_H 1 diff --git a/contrib/bind9/lib/dns/include/dst/lib.h b/contrib/bind9/lib/dns/include/dst/lib.h index 886575e..1e3717a 100644 --- a/contrib/bind9/lib/dns/include/dst/lib.h +++ b/contrib/bind9/lib/dns/include/dst/lib.h @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: lib.h,v 1.7 2007/06/19 23:47:17 tbox Exp $ */ +/* $Id: lib.h,v 1.7 2007-06-19 23:47:17 tbox Exp $ */ #ifndef DST_LIB_H #define DST_LIB_H 1 diff --git a/contrib/bind9/lib/dns/include/dst/result.h b/contrib/bind9/lib/dns/include/dst/result.h index d77b72e..da2500f 100644 --- a/contrib/bind9/lib/dns/include/dst/result.h +++ b/contrib/bind9/lib/dns/include/dst/result.h @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: result.h,v 1.9 2008/04/01 23:47:10 tbox Exp $ */ +/* $Id: result.h,v 1.9 2008-04-01 23:47:10 tbox Exp $ */ #ifndef DST_RESULT_H #define DST_RESULT_H 1 |