Website URL
Website ssl certificate provider: GoGetSSL
Error Message
Python console:
An error occurred: HTTPSConnectionPool(host='filecdn.rf.gd', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1108)')))
Other Information
My python code:
import requests
url = "https://filecdn.rf.gd/"
try:
response = requests.get(url)
response.raise_for_status()
if response.status_code == 200:
print(f"The page at {url} is up and running.")
else:
print(f"The page at {url} returned a status code {response.status_code}.")
except requests.exceptions.RequestException as e:
print(f"An error occurred: {e}")
except requests.exceptions.HTTPError as e:
print(f"HTTP error: {e}")
except requests.exceptions.ConnectionError as e:
print(f"Connection error: {e}")
except requests.exceptions.Timeout as e:
print(f"Timeout error: {e}")
except requests.exceptions.RequestException as e:
print(f"Request error: {e}")
except Exception as e:
print(f"An unexpected error occurred: {e}")