fix json date to use UTC

This commit is contained in:
Julien Vehent 2014-10-10 18:16:22 -04:00
parent 86edd481f6
commit 37f04054f8
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ display_results_in_terminal() {
display_results_in_json() {
# Display the results in json
ctr=0
echo -n "{\"target\":\"$TARGET\",\"date\":\"$(date '+%FT%T.0Z')\",\"serverside\":\"${serverside}\",\"ciphersuite\": ["
echo -n "{\"target\":\"$TARGET\",\"utctimestamp\":\"$(date -u '+%FT%T.0Z')\",\"serverside\":\"${serverside}\",\"ciphersuite\": ["
for cipher in "${cipherspref[@]}"; do
[ $ctr -gt 0 ] && echo -n ','
echo -n "{\"cipher\":\"$(echo $cipher|awk '{print $1}')\","