From 70e39e3550c4534d03ce30e9f5c8daf25a91f6b7 Mon Sep 17 00:00:00 2001 From: omri Date: Wed, 23 May 2018 15:15:28 +0300 Subject: [PATCH 1/2] Updated public server address. --- docs/configuring.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/configuring.rst b/docs/configuring.rst index 5d44016..a281a09 100644 --- a/docs/configuring.rst +++ b/docs/configuring.rst @@ -9,6 +9,8 @@ Initial Installation ==================== When FIRST is initially installed and IDA is loaded a *Welcome* dialog box will appear. This only appears when FIRST is not configured. +**Notice: public server moved to first.talosintelligence.com:443.** + .. figure:: _static/images/welcome.gif :align: center :alt: FIRST welcome dialog box (with invalid API key) @@ -16,7 +18,7 @@ When FIRST is initially installed and IDA is loaded a *Welcome* dialog box will FIRST welcome dialog box (with invalid API key) -The configuration requires a valid API key that can be obtained from the server (go to first-plugin.us to register with public server). Make sure to test the connection and select **Save** +The configuration requires a valid API key that can be obtained from the server (go to first.talosintelligence.com to register with public server). Make sure to test the connection and select **Save** Plugin Main Window ================== From 567d7abb83a81e5e44aa730f5eb3d483e2b7dc01 Mon Sep 17 00:00:00 2001 From: xabiugarte Date: Tue, 15 Oct 2019 06:50:33 -0400 Subject: [PATCH 2/2] Fix on default server address --- first_plugin_ida/first.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/first_plugin_ida/first.py b/first_plugin_ida/first.py index 169a0dd..887ef45 100644 --- a/first_plugin_ida/first.py +++ b/first_plugin_ida/first.py @@ -1699,8 +1699,8 @@ class Configuration(object): config (:obj:`RawConfigParser`): Configuration details for plugin. ''' def __init__(self, config=None): - self.__server = 'first-plugin.us' - self.__port = 5000 + self.__server = 'first.talosintelligence.com' + self.__port = 443 self.__protocol = 'https' self.__verify = False self.__auth = False