diff --git a/poc_vulnerability_testing.py b/poc_vulnerability_testing.py index 4bad6bf..2cd9916 100644 --- a/poc_vulnerability_testing.py +++ b/poc_vulnerability_testing.py @@ -40,7 +40,7 @@ def check_protected_file(target_url): # Loop through each URL and test the response for test_url in test_urls: print(f"Testing URL: {test_url}") - response = requests.get(test_url) + response = requests.get(test_url, verify=False) # Do not verfiy certificates to be able to check sites with expired or self signed certificates # Display response status code and check for potential bypass success print(f"URL Status Code: {response.status_code}")