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