- fix for renamed http_header function

This commit is contained in:
Dirk 2015-09-29 18:47:49 +02:00
parent cac49cb1f1
commit 1c1eaa53d8
1 changed files with 4 additions and 4 deletions

View File

@ -611,7 +611,7 @@ detect_ipv4() {
local spaces=" " local spaces=" "
if [[ ! -s $HEADERFILE ]]; then if [[ ! -s $HEADERFILE ]]; then
http_header "$1" || return 3 run_http_header "$1" || return 3
fi fi
# remove pagespeed header as it is mistakenly identified as ipv4 address https://github.com/drwetter/testssl.sh/issues/158 # remove pagespeed header as it is mistakenly identified as ipv4 address https://github.com/drwetter/testssl.sh/issues/158
@ -686,7 +686,7 @@ run_hsts() {
local hsts_age_days local hsts_age_days
if [[ ! -s $HEADERFILE ]]; then if [[ ! -s $HEADERFILE ]]; then
http_header "$1" || return 3 run_http_header "$1" || return 3
fi fi
#pr_bold " HSTS " #pr_bold " HSTS "
pr_bold " Strict Transport Security " pr_bold " Strict Transport Security "
@ -726,7 +726,7 @@ run_hpkp() {
local i local i
if [[ ! -s $HEADERFILE ]]; then if [[ ! -s $HEADERFILE ]]; then
http_header "$1" || return 3 run_http_header "$1" || return 3
fi fi
#pr_bold " HPKP " #pr_bold " HPKP "
pr_bold " Public Key Pinning " pr_bold " Public Key Pinning "
@ -5051,4 +5051,4 @@ fi
exit $? exit $?
# $Id: testssl.sh,v 1.394 2015/09/28 20:53:59 dirkw Exp $ # $Id: testssl.sh,v 1.395 2015/09/29 16:47:47 dirkw Exp $