From 038dd93eb822ef56bb5adbfdb13165913042024b Mon Sep 17 00:00:00 2001 From: Jonatan Castro Date: Thu, 26 Nov 2020 18:32:38 +1100 Subject: [PATCH] Revert warning on 400 days --- ssl_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl_checker.py b/ssl_checker.py index e48caa8..e14aa86 100755 --- a/ssl_checker.py +++ b/ssl_checker.py @@ -176,7 +176,7 @@ class SSLChecker: self.total_valid += 1 # If the certificate has less than 15 days validity - if context['valid_days_to_expire'] <= 400: + if context['valid_days_to_expire'] <= 15: self.total_warning += 1 return context