Add one second for 825 day validity test
The CA browser form agreed on a validity period of 825 days or less (https://cabforum.org/wp-content/uploads/CA-Browser-Forum-BR-1.5.3-redlined.pdf, p4). PR #1427 addressed that. However when an issuer signed/issued a certificate with exactly 825 days, the check reported incorrectly that the life time is too long. This commit addressed that by adding a second to the calulation. Also the output takes into account that it must be over ('>') 825 days, not '>='.
This commit is contained in:
parent
520a4fbf75
commit
38a00f7170
11
testssl.sh
11
testssl.sh
|
@ -8765,10 +8765,9 @@ 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)) ]]; then
|
elif [[ $diffseconds -ge $((3600 * 24 * 825 + 1)) ]]; then
|
||||||
# Also "official" certificates issued from March 1st, 2018 aren't supposed
|
# Also "official" certificates issued from March 1st, 2018 (1517353200) aren't supposed
|
||||||
# to be valid longer than 825 days which is 1517353200 in epoch seconds
|
# to be valid longer than 825 days which is 1517353200 in epoch seconds
|
||||||
# (GNUish: date --date='01/31/2018 00:00:00' +"%s")
|
|
||||||
gt_825=true
|
gt_825=true
|
||||||
if "$HAS_OPENBSDDATE"; then
|
if "$HAS_OPENBSDDATE"; then
|
||||||
if [[ 20180301 -le ${yearstart//-/} ]]; then
|
if [[ 20180301 -le ${yearstart//-/} ]]; then
|
||||||
|
@ -8780,11 +8779,11 @@ certificate_info() {
|
||||||
# Now, the verdict, depending on the issuing date
|
# Now, the verdict, depending on the issuing date
|
||||||
out "$spaces"
|
out "$spaces"
|
||||||
if "$gt_825warn" && "$gt_825"; then
|
if "$gt_825warn" && "$gt_825"; then
|
||||||
prln_svrty_medium ">= 825 days issued after 2018/03/01 is too long"
|
prln_svrty_medium "> 825 days issued after 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"
|
||||||
elif "$gt_825"; then
|
elif "$gt_825"; then
|
||||||
outln ">= 825 days certificate life time but issued before 2018/03/01"
|
outln ">= 825 days certificate life time but issued before 2018/03/01"
|
||||||
fileout "cert_validityPeriod${json_postfix}" "INFO" "$((diffseconds / (3600 * 24) )) < 825 days"
|
fileout "cert_validityPeriod${json_postfix}" "INFO" "$((diffseconds / (3600 * 24) )) =< 825 days"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# All is fine with valididy period
|
# All is fine with valididy period
|
||||||
|
|
Loading…
Reference in New Issue