From e67171612b667a77d704950acfc30ab184700466 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Tue, 8 Oct 2024 11:54:07 +0200 Subject: [PATCH] - Fix #1149: unbound-control-setup hangs sometimes depending on the openssl version. --- doc/Changelog | 4 ++++ smallapp/unbound-control-setup.sh.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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