Vendor import of BIND 9.8.5-P2

Approved by:	delphij (mentor, implicit)
Sponsored by:	DK Hostmaster A/S
This commit is contained in:
erwin 2013-07-31 11:42:42 +00:00
parent dc235a5943
commit 414d5ed7dd
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
--- 9.8.5-P2 released ---
3621. [security] Incorrect bounds checking on private type 'keydata'
can lead to a remotely triggerable REQUIRE failure
(CVE-2013-4854). [RT #34238]
--- 9.8.5-P1 released ---
3584. [security] Caching data from an incompletely signed zone could

View File

@ -176,7 +176,7 @@ fromwire_keydata(ARGS_FROMWIRE) {
UNUSED(options);
isc_buffer_activeregion(source, &sr);
if (sr.length < 4)
if (sr.length < 16)
return (ISC_R_UNEXPECTEDEND);
isc_buffer_forward(source, sr.length);

View File

@ -9,4 +9,4 @@ MAJORVER=9
MINORVER=8
PATCHVER=5
RELEASETYPE=-P
RELEASEVER=1
RELEASEVER=2