mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-11 03:00:57 +01:00
FIX #691 (addressing case sensitive local hostnames)
This commit is contained in:
parent
540567ec83
commit
c9b833ed5c
14
testssl.sh
14
testssl.sh
@ -91,7 +91,7 @@ egrep -q "dev|rc" <<< "$VERSION" && \
|
|||||||
|
|
||||||
readonly PROG_NAME=$(basename "$0")
|
readonly PROG_NAME=$(basename "$0")
|
||||||
readonly RUN_DIR=$(dirname "$0")
|
readonly RUN_DIR=$(dirname "$0")
|
||||||
TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}" # if you run testssl.sh from a different path you can set either TESTSSL_INSTALL_DIR
|
TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}" # if you run testssl.sh from a different path you can set either TESTSSL_INSTALL_DIR
|
||||||
CA_BUNDLES_PATH="${CA_BUNDLES_PATH:-""}" # or CA_BUNDLES_PATH to find the CA BUNDLES. TESTSSL_INSTALL_DIR helps you to find the RFC mapping also
|
CA_BUNDLES_PATH="${CA_BUNDLES_PATH:-""}" # or CA_BUNDLES_PATH to find the CA BUNDLES. TESTSSL_INSTALL_DIR helps you to find the RFC mapping also
|
||||||
MAPPING_FILE_RFC=""
|
MAPPING_FILE_RFC=""
|
||||||
OPENSSL_LOCATION=""
|
OPENSSL_LOCATION=""
|
||||||
@ -317,7 +317,7 @@ readonly SSLv2_CLIENT_HELLO="
|
|||||||
|
|
||||||
###### output functions ######
|
###### output functions ######
|
||||||
# a little bit of sanitizing with bash internal search&replace -- otherwise printf will hiccup at '%' and '--' does the rest.
|
# a little bit of sanitizing with bash internal search&replace -- otherwise printf will hiccup at '%' and '--' does the rest.
|
||||||
out(){
|
out(){
|
||||||
# if [[ "$BASH_VERSINFO" -eq 4 ]]; then
|
# if [[ "$BASH_VERSINFO" -eq 4 ]]; then
|
||||||
printf -- "%b" "${1//%/%%}"
|
printf -- "%b" "${1//%/%%}"
|
||||||
# else
|
# else
|
||||||
@ -459,7 +459,7 @@ strip_quote() {
|
|||||||
sed -e "s,\x1B\[[0-9;]*[a-zA-Z],,g" \
|
sed -e "s,\x1B\[[0-9;]*[a-zA-Z],,g" \
|
||||||
-e "s/\"/\\'/g" \
|
-e "s/\"/\\'/g" \
|
||||||
-e 's/^ *//g' \
|
-e 's/^ *//g' \
|
||||||
-e 's/ *$//g' <<< "$1"
|
-e 's/ *$//g' <<< "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
###### helper function definitions ######
|
###### helper function definitions ######
|
||||||
@ -889,7 +889,7 @@ run_http_header() {
|
|||||||
# populate vars for HTTP time
|
# populate vars for HTTP time
|
||||||
|
|
||||||
debugme echo "$NOW_TIME: $HTTP_TIME"
|
debugme echo "$NOW_TIME: $HTTP_TIME"
|
||||||
|
|
||||||
# delete from pattern til the end. We ignore any leading spaces (e.g. www.amazon.de)
|
# delete from pattern til the end. We ignore any leading spaces (e.g. www.amazon.de)
|
||||||
sed -e '/<HTML>/,$d' -e '/<html>/,$d' -e '/<XML/,$d' -e '/<?XML/,$d' \
|
sed -e '/<HTML>/,$d' -e '/<html>/,$d' -e '/<XML/,$d' -e '/<?XML/,$d' \
|
||||||
-e '/<xml/,$d' -e '/<?xml/,$d' -e '/<\!DOCTYPE/,$d' -e '/<\!doctype/,$d' $HEADERFILE >$HEADERFILE.2
|
-e '/<xml/,$d' -e '/<?xml/,$d' -e '/<\!DOCTYPE/,$d' -e '/<\!doctype/,$d' $HEADERFILE >$HEADERFILE.2
|
||||||
@ -8126,7 +8126,7 @@ get_local_aaaa() {
|
|||||||
local etchosts="/etc/hosts /c/Windows/System32/drivers/etc/hosts"
|
local etchosts="/etc/hosts /c/Windows/System32/drivers/etc/hosts"
|
||||||
|
|
||||||
# for security testing sometimes we have local entries. Getent is BS under Linux for localhost: No network, no resolution
|
# for security testing sometimes we have local entries. Getent is BS under Linux for localhost: No network, no resolution
|
||||||
ip6=$(grep -wh "$1" $etchosts 2>/dev/null | grep ':' | egrep -v '^#|\.local' | egrep "[[:space:]]$1" | awk '{ print $1 }')
|
ip6=$(grep -wih "$1" $etchosts 2>/dev/null | grep ':' | egrep -v '^#|\.local' | egrep -i "[[:space:]]$1" | awk '{ print $1 }')
|
||||||
if is_ipv6addr "$ip6"; then
|
if is_ipv6addr "$ip6"; then
|
||||||
echo "$ip6"
|
echo "$ip6"
|
||||||
else
|
else
|
||||||
@ -8139,7 +8139,7 @@ get_local_a() {
|
|||||||
local etchosts="/etc/hosts /c/Windows/System32/drivers/etc/hosts"
|
local etchosts="/etc/hosts /c/Windows/System32/drivers/etc/hosts"
|
||||||
|
|
||||||
# for security testing sometimes we have local entries. Getent is BS under Linux for localhost: No network, no resolution
|
# for security testing sometimes we have local entries. Getent is BS under Linux for localhost: No network, no resolution
|
||||||
ip4=$(grep -wh "$1" $etchosts 2>/dev/null | egrep -v ':|^#|\.local' | egrep "[[:space:]]$1" | awk '{ print $1 }')
|
ip4=$(grep -wih "$1" $etchosts 2>/dev/null | egrep -v ':|^#|\.local' | egrep -i "[[:space:]]$1" | awk '{ print $1 }')
|
||||||
if is_ipv4addr "$ip4"; then
|
if is_ipv4addr "$ip4"; then
|
||||||
echo "$ip4"
|
echo "$ip4"
|
||||||
else
|
else
|
||||||
@ -9198,4 +9198,4 @@ fi
|
|||||||
exit $?
|
exit $?
|
||||||
|
|
||||||
|
|
||||||
# $Id: testssl.sh,v 1.574 2017/03/27 20:37:06 dirkw Exp $
|
# $Id: testssl.sh,v 1.576 2017/04/04 08:03:41 dirkw Exp $
|
||||||
|
Loading…
Reference in New Issue
Block a user