From 2362cd8745f6a13637ae2bbb2fc71ca8326be6e4 Mon Sep 17 00:00:00 2001 From: Dirk Date: Fri, 1 Jul 2016 12:03:46 +0200 Subject: [PATCH 1/3] wording for GOST sig algos and keys --- testssl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testssl.sh b/testssl.sh index 73836a5..eee727a 100755 --- a/testssl.sh +++ b/testssl.sh @@ -3913,7 +3913,7 @@ certificate_info() { ;; *) out "$cert_sig_algo (" - pr_warning "FIXME: is unknown" + pr_warning "FIXME: can't tell whether this is good or not" outln ")" fileout "${json_prefix}algorithm" "DEBUG" "Signature Algorithm: $sign_algo" ;; @@ -3983,7 +3983,7 @@ certificate_info() { fi else out "$cert_keysize bits (" - pr_warning "FIXME: can't tell whether this is good here or not" + pr_warning "FIXME: can't tell whether this is good or not" outln ")" fileout "${json_prefix}key_size" "WARN" "Server keys $cert_keysize bits (unknown signature algorithm)" fi @@ -8148,4 +8148,4 @@ fi exit $? -# $Id: testssl.sh,v 1.509 2016/06/28 10:21:48 dirkw Exp $ +# $Id: testssl.sh,v 1.510 2016/07/01 10:03:44 dirkw Exp $ From 0d2797e5a0c84b339ae1ba1c0ccc5a8d70f11a33 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Fri, 1 Jul 2016 14:58:54 +0200 Subject: [PATCH 2/3] travis ci icon --- Readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Readme.md b/Readme.md index e44643d..3b16045 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,7 @@ ## Intro +[![Build Status](https://travis-ci.org/drwetter/testssl.sh.svg?branch=master)](https://travis-ci.org/drwetter/testssl.sh) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/drwetter/testssl.sh?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) `testssl.sh` is a free command line tool which checks a server's service on From 32f249b0c20c129d83ddcf171334bced4843a881 Mon Sep 17 00:00:00 2001 From: Dirk Date: Fri, 1 Jul 2016 18:26:05 +0200 Subject: [PATCH 3/3] enabling sockets for client testing per default #375 --- testssl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testssl.sh b/testssl.sh index eee727a..457cad3 100755 --- a/testssl.sh +++ b/testssl.sh @@ -2009,7 +2009,7 @@ run_client_simulation() { local name tls proto cipher local using_sockets=true - if $SSL_NATIVE || [[ -n "$STARTTLS" ]] || ! $EXPERIMENTAL; then + if $SSL_NATIVE || [[ -n "$STARTTLS" ]]; then using_sockets=false fi @@ -8148,4 +8148,4 @@ fi exit $? -# $Id: testssl.sh,v 1.510 2016/07/01 10:03:44 dirkw Exp $ +# $Id: testssl.sh,v 1.511 2016/07/01 16:26:03 dirkw Exp $