- line space for some single vuln. adjusted
This commit is contained in:
parent
4ac7713a22
commit
87592aafd9
|
@ -3038,7 +3038,7 @@ tls_sockets() {
|
|||
|
||||
# mainly adapted from https://gist.github.com/takeshixx/10107280
|
||||
run_heartbleed(){
|
||||
[ $VULN_COUNT -le $VULN_THRESHLD ] && outln && pr_headlineln " Testing for heartbleed vulnerability "
|
||||
[ $VULN_COUNT -le $VULN_THRESHLD ] && outln && pr_headlineln " Testing for heartbleed vulnerability " && outln
|
||||
pr_bold " Heartbleed\c"; out " (CVE-2014-0160) "
|
||||
|
||||
[[ -z "$TLS_EXTENSIONS" ]] && determine_tls_extensions
|
||||
|
@ -3161,7 +3161,7 @@ ok_ids(){
|
|||
run_ccs_injection(){
|
||||
# see https://www.openssl.org/news/secadv_20140605.txt
|
||||
# mainly adapted from Ramon de C Valle's C code from https://gist.github.com/rcvalle/71f4b027d61a78c42607
|
||||
[[ $VULN_COUNT -le $VULN_THRESHLD ]] && outln && pr_headlineln " Testing for CCS injection vulnerability "
|
||||
[[ $VULN_COUNT -le $VULN_THRESHLD ]] && outln && pr_headlineln " Testing for CCS injection vulnerability " && outln
|
||||
pr_bold " CCS"; out " (CVE-2014-0224) "
|
||||
|
||||
# determine TLS versions offered <-- needs to come from another place
|
||||
|
@ -3672,7 +3672,8 @@ run_beast(){
|
|||
|
||||
if [[ $VULN_COUNT -le $VULN_THRESHLD ]] || $WIDE; then
|
||||
outln
|
||||
pr_headlineln " Testing for BEAST vulnerability " && outln
|
||||
pr_headlineln " Testing for BEAST vulnerability "
|
||||
outln
|
||||
fi
|
||||
pr_bold " BEAST"; out " (CVE-2011-3389) "
|
||||
$WIDE && outln
|
||||
|
@ -5324,4 +5325,4 @@ fi
|
|||
exit $?
|
||||
|
||||
|
||||
# $Id: testssl.sh,v 1.418 2015/11/03 22:29:52 dirkw Exp $
|
||||
# $Id: testssl.sh,v 1.419 2015/11/08 21:14:27 dirkw Exp $
|
||||
|
|
Loading…
Reference in New Issue