From f618e9a12eb9a22c56e6bea0bd8bcb93b248be78 Mon Sep 17 00:00:00 2001 From: Richard Soderberg Date: Fri, 18 Sep 2015 14:30:21 -0700 Subject: [PATCH] stop reading the SSL certificate after we get the sigalg from it --- cipherscan | 1 + 1 file changed, 1 insertion(+) diff --git a/cipherscan b/cipherscan index 95f19b1..c783041 100755 --- a/cipherscan +++ b/cipherscan @@ -458,6 +458,7 @@ parse_openssl_output() { while read data; do if [[ $data =~ $regex ]]; then current_sigalg="${BASH_REMATCH[1]// /_}" + break fi done <<<"$ossl_out" fi