diff --git a/monkey/infection_monkey/config.py b/monkey/infection_monkey/config.py index 0d44cb97370..50ee2c06024 100644 --- a/monkey/infection_monkey/config.py +++ b/monkey/infection_monkey/config.py @@ -157,7 +157,7 @@ def as_dict(self): retry_failed_explotation = True # addresses of internet servers to ping and check if the monkey has internet acccess. - internet_services = ["monkey.guardicore.com", "www.google.com"] + internet_services = ["updates.infectionmonkey.com", "www.google.com"] keep_tunnel_open_time = 60 diff --git a/monkey/monkey_island/cc/services/version_update.py b/monkey/monkey_island/cc/services/version_update.py index 127e39f574e..3d43017f6a7 100644 --- a/monkey/monkey_island/cc/services/version_update.py +++ b/monkey/monkey_island/cc/services/version_update.py @@ -10,7 +10,7 @@ class VersionUpdateService: - VERSION_SERVER_URL_PREF = 'https://monkey.guardicore.com' + VERSION_SERVER_URL_PREF = 'https://updates.infectionmonkey.com' VERSION_SERVER_CHECK_NEW_URL = VERSION_SERVER_URL_PREF + '?deployment=%s&monkey_version=%s' VERSION_SERVER_DOWNLOAD_URL = VERSION_SERVER_CHECK_NEW_URL + '&is_download=true'