diff --git a/troubleshooting.py b/troubleshooting.py index 4959c35..4670f2c 100644 --- a/troubleshooting.py +++ b/troubleshooting.py @@ -17,6 +17,9 @@ import dns.asyncresolver import httpx from requests_doh import DNSOverHTTPSSession, add_dns_provider import domainLookup +import urllib3 + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) # Disable insecure request warnings (since we are manually verifying the certificate) doh_url = "https://hnsdoh.com/dns-query"