From cbb32d375bd26f4bc0b25bb9b90c5ffa795cbdf5 Mon Sep 17 00:00:00 2001 From: Dirk Date: Mon, 30 Oct 2023 21:39:30 +0100 Subject: [PATCH] Fix output: PROXY string vs $PROXY variable See also #2428. --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index ed7fc7b..71819ed 100755 --- a/testssl.sh +++ b/testssl.sh @@ -22182,7 +22182,7 @@ datebanner() { local scan_time_f="" local node_banner="" - if [[ -n "PROXY" ]] && $DNS_VIA_PROXY;then + if [[ -n "$PROXY" ]] && "$DNS_VIA_PROXY"; then node_banner="$NODE:$PORT" else node_banner="$NODEIP:$PORT ($NODE)"