correct comment
This commit is contained in:
parent
c80a1307bf
commit
e9108baf93
|
@ -8736,8 +8736,8 @@ certificate_info() {
|
||||||
fileout "cert_notBefore${json_postfix}" "INFO" "$startdate" # we assume that the certificate has no start time in the future
|
fileout "cert_notBefore${json_postfix}" "INFO" "$startdate" # we assume that the certificate has no start time in the future
|
||||||
fileout "cert_notAfter${json_postfix}" "$expok" "$enddate" # They are in UTC
|
fileout "cert_notAfter${json_postfix}" "$expok" "$enddate" # They are in UTC
|
||||||
|
|
||||||
# Internal certificates or from appliances often have a too high validity periods with
|
# Internal certificates or cert. from appliances often have too high validity periods with
|
||||||
# either 5 or 10 days. Also "official" certificates issued from March 1st, 2018 aren't
|
# either 5 or 10 years. Also "official" certificates issued from March 1st, 2018 aren't
|
||||||
# supposed to be valid longer than 825 days which is 1517353200 in epoch seconds
|
# supposed to be valid longer than 825 days which is 1517353200 in epoch seconds
|
||||||
# (GNUish: date --date='01/31/2018 00:00:00' +"%s")
|
# (GNUish: date --date='01/31/2018 00:00:00' +"%s")
|
||||||
if [[ $diffseconds -ge $((3600 * 24 * 365 * 10)) ]]; then
|
if [[ $diffseconds -ge $((3600 * 24 * 365 * 10)) ]]; then
|
||||||
|
@ -8748,7 +8748,7 @@ certificate_info() {
|
||||||
out "$spaces"
|
out "$spaces"
|
||||||
prln_svrty_medium ">= 5 years is too long"
|
prln_svrty_medium ">= 5 years is too long"
|
||||||
fileout "cert_validityPeriod${json_postfix}" "MEDIUM" "$((diffseconds / (3600 * 24) )) days"
|
fileout "cert_validityPeriod${json_postfix}" "MEDIUM" "$((diffseconds / (3600 * 24) )) days"
|
||||||
elif [[ $diffseconds -ge $((3600 * 24 * 825)) ]] && [[ $(parse_date "$startdate" "+%s" $'%F %H:%M') -ge 1517353200 ]]; then
|
elif [[ $diffseconds -ge $((3600 * 24 * 825)) ]] && [[ $(parse_date "$startdate" "+%s" $'%F %H:%M') -ge 1517353200 ]]; then
|
||||||
out "$spaces"
|
out "$spaces"
|
||||||
prln_svrty_medium ">= 825 days and issue >= 2018/03/01 is too long"
|
prln_svrty_medium ">= 825 days and issue >= 2018/03/01 is too long"
|
||||||
fileout "cert_validityPeriod${json_postfix}" "MEDIUM" "$((diffseconds / (3600 * 24) )) >= 825 days"
|
fileout "cert_validityPeriod${json_postfix}" "MEDIUM" "$((diffseconds / (3600 * 24) )) >= 825 days"
|
||||||
|
|
Loading…
Reference in New Issue