From 331b5cb750641eb83f7963e2f8618123f9e4caa5 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Tue, 14 Jan 2020 17:38:02 +0100 Subject: [PATCH] Output changes * add TLS_EMPTY_RENEGOTIATION_INFO_SCSV in screen output * remove trailing ":" to be sure no one copies it, see also #1440 --- utils/hexstream2cipher.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utils/hexstream2cipher.sh b/utils/hexstream2cipher.sh index d346499..1f67180 100755 --- a/utils/hexstream2cipher.sh +++ b/utils/hexstream2cipher.sh @@ -17,7 +17,11 @@ for ((i=0; i $grepstr --> " cip=$(grep -i -E "^ *${grepstr}" $mapfile | awk '{ print $3 }') - echo $cip + if [[ $grepstr == 0x00,0xff ]]; then + echo TLS_EMPTY_RENEGOTIATION_INFO_SCSV + else + echo $cip + fi if "$first"; then ciphers="$cip" first=false @@ -27,4 +31,4 @@ for ((i=0; i