diff --git a/ssl_checker.py b/ssl_checker.py index e14aa86..76bb246 100755 --- a/ssl_checker.py +++ b/ssl_checker.py @@ -175,8 +175,8 @@ class SSLChecker: else: self.total_valid += 1 - # If the certificate has less than 15 days validity - if context['valid_days_to_expire'] <= 15: + # If the certificate has less than 30 days validity + if context['valid_days_to_expire'] <= 30: self.total_warning += 1 return context