From a5504b64a32e164c3f1c7d8bdf9e05e2341ddd06 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Fri, 15 Jul 2022 12:46:44 +0200 Subject: [PATCH] Better detection of domains that do not respond to tainting --- Docker/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/utils.sh b/Docker/utils.sh index 92f4320..95b4367 100644 --- a/Docker/utils.sh +++ b/Docker/utils.sh @@ -254,5 +254,5 @@ get_http_status(){ is_http_error(){ _url="$1" status=$(get_http_status "$_url") - [ "${status:0:1}" = "4" ] + [ "${status:0:1}" = "4" ] || [ "${status:0:1}" = "0" ] }