From b8d911343e15ef3b74c012bf0bf2257c0baccf83 Mon Sep 17 00:00:00 2001 From: Arnim Rupp <46819580+ruppde@users.noreply.github.com> Date: Fri, 2 May 2025 17:15:26 +0200 Subject: [PATCH] Update poc_vulnerability_testing.py Do not verfiy certificates to be able to check sites with expired or self signed certificates --- poc_vulnerability_testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}")