Skip to content

Commit

Permalink
Tentative to fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelfuste committed Dec 9, 2024
1 parent 991c1fe commit e4e3afb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions testssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17169,6 +17169,10 @@ run_renego() {
prln_warning "not having provided client certificate and private key file, the client x509-based authentication prevents this from being tested"
fileout "$jsonID" "WARN" "not having provided client certificate and private key file, the client x509-based authentication prevents this from being tested"
else
# We will extensively use subshell and command pipe
# Do not let herited pipeline error control interfere
[[ $- == *e* ]] && restore_pipeerror=1
[[ $restore_pipeerror == 1 ]] && set +e
# We will need $ERRFILE for mitigation detection
if [[ $ERRFILE =~ dev.null ]]; then
ERRFILE=$TEMPDIR/errorfile.txt || exit $ERR_FCREATE
Expand Down Expand Up @@ -17279,6 +17283,7 @@ run_renego() {
;;
esac
fi
[[ $restore_pipeerror == 1 ]] && set -e
fi

#pr_bold " Insecure Client-Initiated Renegotiation " # pre-RFC 5746, CVE-2009-3555
Expand Down

0 comments on commit e4e3afb

Please sign in to comment.