From f4bb8a19127c100e9613b93dbab7f58597679e42 Mon Sep 17 00:00:00 2001 From: fab Date: Sat, 9 Sep 2023 19:24:57 +0200 Subject: [PATCH] Update main.py --- main.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.py b/main.py index 2730be7..2d0354b 100644 --- a/main.py +++ b/main.py @@ -42,10 +42,10 @@ # from checks.check_mobile_friendly import check_mobile_friendly from checks.check_rate_limiting import check_rate_limiting from checks.check_redirect_chains import check_redirect_chains -from checks.check_server_response_time import check_server_response_time -from checks.check_subresource_integrity import check_subresource_integrity +# from checks.check_server_response_time import check_server_response_time +# from checks.check_subresource_integrity import check_subresource_integrity # from checks.check_third_party_requests import check_third_party_requests -from checks.check_third_party_resources import check_third_party_resources +# from checks.check_third_party_resources import check_third_party_resources # from checks.check_url_canonicalization import check_url_canonicalization # Initialize an error log @@ -122,10 +122,10 @@ def log_error(message): # ("Mobile friendly", check_mobile_friendly), ("Rate limited", check_rate_limiting), ("Redirect chains", check_redirect_chains), - ("Response time", check_server_response_time), - ("Subresources integrity", check_subresource_integrity), +# ("Response time", check_server_response_time), +# ("Subresources integrity", check_subresource_integrity), # ("3rd party requests", check_third_party_requests), - ("3rd party resources", check_third_party_resources), +# ("3rd party resources", check_third_party_resources), # ("URL canonicalization", check_url_canonicalization), ]