From: W.C.A. Wijngaards Date: Tue, 8 Oct 2024 09:54:07 +0000 (+0200) Subject: - Fix #1149: unbound-control-setup hangs sometimes depending on X-Git-Tag: release-1.22.0rc1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e67171612b667a77d704950acfc30ab184700466;p=thirdparty%2Funbound.git - Fix #1149: unbound-control-setup hangs sometimes depending on the openssl version. --- diff --git a/doc/Changelog b/doc/Changelog index e35c58d55..c28f8b41c 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +8 October 2024: Wouter + - Fix #1149: unbound-control-setup hangs sometimes depending on + the openssl version. + 3 October 2024: Yorgos - Fix CVE-2024-8508, unbounded name compression could lead to denial of service. diff --git a/smallapp/unbound-control-setup.sh.in b/smallapp/unbound-control-setup.sh.in index 91458af36..4a358f6bd 100644 --- a/smallapp/unbound-control-setup.sh.in +++ b/smallapp/unbound-control-setup.sh.in @@ -104,7 +104,7 @@ while getopts 'd:hr' arg; do done shift $((OPTIND - 1)) -if ! openssl /dev/null 2>&1; then +if ! openssl version /dev/null 2>&1; then echo "$0 requires openssl to be installed for keys/certificates generation." >&2 exit 1 fi