diff options
author | Doug Barton <dougb@FreeBSD.org> | 2011-05-28 00:21:28 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2011-05-28 00:21:28 +0000 |
commit | 37bb75f74000255f3ea6c7c2d2e9ddae3075c19f (patch) | |
tree | b74697c394b9c5dace073b5174bc5cb33161ac8b /contrib/bind9/bin/named/convertxsl.pl | |
parent | 7faf44ba96b9bb769c10022e2647be2522b9a1ed (diff) | |
parent | dcdfcb5422f2154aa1be713ad454590f1ab6724b (diff) |
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.
Notes
Notes:
svn path=/head/; revision=222395
Diffstat (limited to 'contrib/bind9/bin/named/convertxsl.pl')
-rwxr-xr-x | contrib/bind9/bin/named/convertxsl.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/bind9/bin/named/convertxsl.pl b/contrib/bind9/bin/named/convertxsl.pl index 87550b3c1a58..a6a56686e209 100755 --- a/contrib/bind9/bin/named/convertxsl.pl +++ b/contrib/bind9/bin/named/convertxsl.pl @@ -14,12 +14,12 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: convertxsl.pl,v 1.14 2008/07/17 23:43:26 jinmei Exp $ +# $Id: convertxsl.pl,v 1.14 2008-07-17 23:43:26 jinmei Exp $ use strict; use warnings; -my $rev = '$Id: convertxsl.pl,v 1.14 2008/07/17 23:43:26 jinmei Exp $'; +my $rev = '$Id: convertxsl.pl,v 1.14 2008-07-17 23:43:26 jinmei Exp $'; $rev =~ s/\$//g; $rev =~ s/,v//g; $rev =~ s/Id: //; |