2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-10-05 18:53:40 +02:00

Merge pull request #3 from simondeziel/clean-temp

Cleanup old temp files when a connection failed
This commit is contained in:
Julien Vehent 2014-01-07 19:04:43 -08:00
commit 26948cbccf

View File

@ -62,6 +62,7 @@ EOF
current_protocol=$(grep -E "^\s+Protocol\s+:" $tmp|awk '{print $3}') current_protocol=$(grep -E "^\s+Protocol\s+:" $tmp|awk '{print $3}')
if [[ -z "$current_protocol" || "$current_cipher" == '(NONE)' ]]; then if [[ -z "$current_protocol" || "$current_cipher" == '(NONE)' ]]; then
# connection failed, try again with next TLS version # connection failed, try again with next TLS version
rm "$tmp"
continue continue
fi fi
# connection succeeded, add TLS version to positive results # connection succeeded, add TLS version to positive results