Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziosalmi authored Sep 9, 2023
1 parent d364c9d commit f4bb8a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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),
]

Expand Down

0 comments on commit f4bb8a1

Please sign in to comment.