diff --git a/monkey/infection_monkey/network/info.py b/monkey/infection_monkey/network/info.py index b40f703c5..952a9282e 100644 --- a/monkey/infection_monkey/network/info.py +++ b/monkey/infection_monkey/network/info.py @@ -138,7 +138,7 @@ def check_internet_access(services): """ for host in services: try: - requests.get("https://%s" % (host,), timeout=TIMEOUT) + requests.get("https://%s" % (host,), timeout=TIMEOUT, verify=False) return True except ConnectionError: # Failed connecting