mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-29 12:59:44 +01:00
commit
9eaccee776
11
testssl.sh
11
testssl.sh
@ -20983,8 +20983,6 @@ determine_service() {
|
|||||||
ftp|smtp|lmtp|pop3|imap|xmpp|xmpp-server|telnet|ldap|postgres|mysql|nntp)
|
ftp|smtp|lmtp|pop3|imap|xmpp|xmpp-server|telnet|ldap|postgres|mysql|nntp)
|
||||||
STARTTLS="-starttls $protocol"
|
STARTTLS="-starttls $protocol"
|
||||||
if [[ "$protocol" == xmpp ]] || [[ "$protocol" == xmpp-server ]]; then
|
if [[ "$protocol" == xmpp ]] || [[ "$protocol" == xmpp-server ]]; then
|
||||||
# for XMPP, openssl has a problem using -connect $NODEIP:$PORT. thus we use -connect $NODE:$PORT instead!
|
|
||||||
NODEIP="$NODE"
|
|
||||||
if [[ -n "$XMPP_HOST" ]]; then
|
if [[ -n "$XMPP_HOST" ]]; then
|
||||||
if ! "$HAS_XMPP"; then
|
if ! "$HAS_XMPP"; then
|
||||||
fatal "Your $OPENSSL does not support the \"-xmpphost\" option" $ERR_OSSLBIN
|
fatal "Your $OPENSSL does not support the \"-xmpphost\" option" $ERR_OSSLBIN
|
||||||
@ -20998,11 +20996,18 @@ determine_service() {
|
|||||||
prln_warning " IP address doesn't work for XMPP, trying PTR record $rDNS"
|
prln_warning " IP address doesn't work for XMPP, trying PTR record $rDNS"
|
||||||
# remove trailing .
|
# remove trailing .
|
||||||
NODE=${rDNS%%.}
|
NODE=${rDNS%%.}
|
||||||
NODEIP=${rDNS%%.}
|
|
||||||
else
|
else
|
||||||
fatal "No DNS supplied and no PTR record available which I can try for XMPP" $ERR_DNSLOOKUP
|
fatal "No DNS supplied and no PTR record available which I can try for XMPP" $ERR_DNSLOOKUP
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
if "$HAS_XMPP"; then
|
||||||
|
# small hack -- instead of changing calls all over the place
|
||||||
|
STARTTLS="$STARTTLS -xmpphost $NODE"
|
||||||
|
else
|
||||||
|
# If the XMPP name cannot be provided using -xmpphost,
|
||||||
|
# then it needs to be provided to the -connect option
|
||||||
|
NODEIP="$NODE"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
if [[ "$protocol" == xmpp-server ]] && ! "$HAS_XMPP_SERVER"; then
|
if [[ "$protocol" == xmpp-server ]] && ! "$HAS_XMPP_SERVER"; then
|
||||||
#FIXME: make use of HAS_XMPP_SERVER2
|
#FIXME: make use of HAS_XMPP_SERVER2
|
||||||
|
Loading…
Reference in New Issue
Block a user