Better detection of domains that do not respond to tainting

This commit is contained in:
Kuba Orlik 2022-07-15 12:46:44 +02:00
parent 5d7451ccb1
commit a5504b64a3

View File

@ -254,5 +254,5 @@ get_http_status(){
is_http_error(){ is_http_error(){
_url="$1" _url="$1"
status=$(get_http_status "$_url") status=$(get_http_status "$_url")
[ "${status:0:1}" = "4" ] [ "${status:0:1}" = "4" ] || [ "${status:0:1}" = "0" ]
} }