Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion poc_vulnerability_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down