mirror of
https://github.com/byReqz/status.git
synced 2024-11-24 00:14:56 +00:00
fix double server headers and case sensitivity
This commit is contained in:
parent
a33429aa4b
commit
ca5a5c9e7a
@ -25,7 +25,7 @@ function get_code {
|
|||||||
elif [[ "$http_code" < 599 && "$http_code" > 499 ]];then
|
elif [[ "$http_code" < 599 && "$http_code" > 499 ]];then
|
||||||
http_code="[\e[31m"$http_code"\e[0m"
|
http_code="[\e[31m"$http_code"\e[0m"
|
||||||
fi
|
fi
|
||||||
http_server=" | $(echo "$http_raw" | grep Server: | cut -d " " -f 2)]"
|
http_server=" | $(echo "$http_raw" | grep --ignore-case "server" | sort -u | cut -d " " -f 2)]"
|
||||||
http_results=""$http_results"
|
http_results=""$http_results"
|
||||||
$(printf "%-50s%s\n" ["$h"] "$http_code""$http_server")"
|
$(printf "%-50s%s\n" ["$h"] "$http_code""$http_server")"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user