mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
0c8f5f2ed9
Resolves several security issues:
- CVE-2026-3592: Limit resolver server list size.
- CVE-2026-3039: Fix GSS-API resource leak.
- CVE-2026-5950: Avoid unbounded recursion loop.
- CVE-2026-5947: Fix crash in resolver when SIG(0)-signed responses are
received under load.
- CVE-2026-3593: Add system test for HTTP/2 SETTINGS frame flood.
- CVE-2026-5946: Disable recursion, UPDATE, and NOTIFY for non-IN views.
Complete list of changes is available upstream at
https://ftp.isc.org/isc/bind9/9.20.23/doc/arm/html/changelog.html
Signed-off-by: Noah Meyerhans <frodo@morgul.net>
(cherry picked from commit ea421564d3)
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
From be735c1b5e12117039ac64f802e30b075987dd22 Mon Sep 17 00:00:00 2001
|
|
From: Matthijs Mekking <matthijs@isc.org>
|
|
Date: Thu, 11 Dec 2025 15:14:55 +0100
|
|
Subject: [PATCH 4/4] fixup! Check if adding new zone can replace an automatic
|
|
empty zone
|
|
|
|
---
|
|
bin/tests/system/addzone/tests.sh | 17 +++++++++++++++++
|
|
1 file changed, 17 insertions(+)
|
|
|
|
--- a/bin/tests/system/addzone/tests.sh
|
|
+++ b/bin/tests/system/addzone/tests.sh
|
|
@@ -104,6 +104,23 @@ n=$((n + 1))
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=$((status + ret))
|
|
|
|
+echo_i "deleting zone which replaced an automatic empty zone ($n)"
|
|
+ret=0
|
|
+$DIG $DIGOPTS @10.53.0.6 a.168.192.in-addr.arpa a >dig.out.pre.$n || ret=1
|
|
+grep 'status: NOERROR' dig.out.pre.$n >/dev/null || ret=1
|
|
+grep '^a.168.192.in-addr.arpa' dig.out.pre.$n >/dev/null || ret=1
|
|
+$RNDCCMD 10.53.0.6 delzone '168.192.in-addr.arpa' 2>&1 | sed 's/^/I:ns6 /'
|
|
+_check_removing_new_zone() (
|
|
+ DIGOPTS2="+tcp +nosea +nostat +nocmd +norec +noauth +noadd +nostats +dnssec -p ${PORT}"
|
|
+ $DIG $DIGOPTS2 @10.53.0.6 168.192.in-addr.arpa SOA >dig.out.ns6.$n \
|
|
+ && grep 'status: NOERROR' dig.out.ns6.$n >/dev/null \
|
|
+ && grep '168\.192\.in-addr\.arpa\..86400.IN.SOA.168\.192\.IN-ADDR\.ARPA\. \. 0 28800 7200 604800 86400' dig.out.ns6.$n >/dev/null
|
|
+)
|
|
+retry_quiet 10 _check_removing_new_zone || ret=1
|
|
+n=$((n + 1))
|
|
+if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
+status=$((status + ret))
|
|
+
|
|
echo_i "adding new zone which replaces an automatic empty zone with bad file ($n)"
|
|
ret=0
|
|
$DIG $DIGOPTS @10.53.0.6 10.in-addr.arpa SOA >dig.out.pre.$n || ret=1
|