From efc9038b8c52c52c02dd73493ae41d1ce9aa1d65 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Thu, 28 Sep 2023 17:59:04 +0300 Subject: [PATCH 01/11] added headers --- Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py | 1 + Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py index bd24c7810a09..587faf914c24 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py @@ -485,6 +485,7 @@ def headers(content_type=None, accept=None, services=None, protocol=None): return { 'Content-Type': 'application/xml', + 'Accept': 'application/xml', 'X-TAXII-Content-Type': content_type, 'X-TAXII-Accept': accept, 'X-TAXII-Services': services, diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml index f3d03fc19ce4..15774dd96bbc 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml @@ -1,6 +1,6 @@ category: Data Enrichment & Threat Intelligence commonfields: - id: TAXIIFeed + id: TAXIIFeed - Headers version: -1 configuration: - defaultvalue: 'true' @@ -130,8 +130,8 @@ configuration: type: 8 required: false description: Ingests indicator feeds from TAXII 1.x servers. -display: TAXII Feed -name: TAXIIFeed +display: TAXII Feed - Headers +name: TAXIIFeed - Headers script: commands: - arguments: From cb0146b4b072027ac8aaaca687859e281b6f0dda Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Sun, 22 Oct 2023 13:57:43 +0300 Subject: [PATCH 02/11] inverse taxii 2.0 and 2.1 --- .../Scripts/TAXII2ApiModule/TAXII2ApiModule.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py index 2bba67aeef06..756fdf4a5667 100644 --- a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py +++ b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py @@ -300,18 +300,18 @@ def init_roots(self): Initializes the api roots (used to get taxii server objects) """ if not self.server: - self.init_server() + self.init_server(version=TAXII_VER_2_1) try: - # disable logging as we might receive client error and try 2.1 + # disable logging as we might receive client error and try 2.0 logging.disable(logging.ERROR) - # try TAXII 2.0 + # try TAXII 2.1 self.set_api_root() # (TAXIIServiceException, HTTPError) should suffice, but sometimes it raises another type of HTTPError except Exception as e: - if "406 Client Error" not in str(e) and "version=2.1" not in str(e): + if "406 Client Error" not in str(e) and "version=2.0" not in str(e): raise e - # switch to TAXII 2.1 - self.init_server(version=TAXII_VER_2_1) + # switch to TAXII 2.0 + self.init_server(version=TAXII_VER_2_0) self.set_api_root() finally: # enable logging From 8db98a95528be284a3bda96ad837baee0ad8f3a1 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Tue, 31 Oct 2023 15:55:41 +0200 Subject: [PATCH 03/11] flip 2.0 and 2.1 protocols --- Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py index 756fdf4a5667..5d750a4defd9 100644 --- a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py +++ b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.py @@ -271,7 +271,7 @@ def __init__( self.default_api_root = default_api_root self.update_custom_fields = update_custom_fields - def init_server(self, version=TAXII_VER_2_0): + def init_server(self, version=TAXII_VER_2_1): """ Initializes a server in the requested version :param version: taxii version key (either 2.0 or 2.1) @@ -300,7 +300,7 @@ def init_roots(self): Initializes the api roots (used to get taxii server objects) """ if not self.server: - self.init_server(version=TAXII_VER_2_1) + self.init_server() try: # disable logging as we might receive client error and try 2.0 logging.disable(logging.ERROR) From 43a7676c8856651afdf71b80f2ac18e4d42062c5 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Tue, 31 Oct 2023 16:08:48 +0200 Subject: [PATCH 04/11] revertd yml --- Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml index 252e40a65b81..9210066f5e19 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml @@ -1,6 +1,6 @@ category: Data Enrichment & Threat Intelligence commonfields: - id: TAXIIFeed - Headers + id: TAXIIFeed version: -1 configuration: - defaultvalue: 'true' @@ -130,8 +130,8 @@ configuration: type: 8 required: false description: Ingests indicator feeds from TAXII 1.x servers. -display: TAXII Feed - Headers -name: TAXIIFeed - Headers +display: TAXII Feed +name: TAXIIFeed script: commands: - arguments: From 7b325e263946b65eaa8c02904c5ac8cbbc19cb38 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Tue, 31 Oct 2023 17:03:16 +0200 Subject: [PATCH 05/11] CLOUD_API_KEYS --- Packs/FeedDHS/ReleaseNotes/2_0_24.md | 6 ++++++ Packs/FeedDHS/pack_metadata.json | 2 +- Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md | 6 ++++++ Packs/FeedMitreAttackv2/pack_metadata.json | 2 +- Packs/FeedTAXII/ReleaseNotes/1_2_1.md | 10 ++++++++++ Packs/FeedTAXII/pack_metadata.json | 2 +- 6 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 Packs/FeedDHS/ReleaseNotes/2_0_24.md create mode 100644 Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md create mode 100644 Packs/FeedTAXII/ReleaseNotes/1_2_1.md diff --git a/Packs/FeedDHS/ReleaseNotes/2_0_24.md b/Packs/FeedDHS/ReleaseNotes/2_0_24.md new file mode 100644 index 000000000000..bad3d944f7e2 --- /dev/null +++ b/Packs/FeedDHS/ReleaseNotes/2_0_24.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### DHS Feed v2 + +- %%UPDATE_RN%% diff --git a/Packs/FeedDHS/pack_metadata.json b/Packs/FeedDHS/pack_metadata.json index 8db30f547088..0ad2174d6f69 100644 --- a/Packs/FeedDHS/pack_metadata.json +++ b/Packs/FeedDHS/pack_metadata.json @@ -2,7 +2,7 @@ "name": "DHS Feed", "description": "Provides cyber threat indicators from the Cybersecurity and Infrastructure Security Agency’s (CISA’s) free Automated Indicator Sharing (AIS) by the Department of Homeland Security (DHS).", "support": "xsoar", - "currentVersion": "2.0.23", + "currentVersion": "2.0.24", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md new file mode 100644 index 000000000000..86d9a12c49e0 --- /dev/null +++ b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### MITRE ATT&CK + +- %%UPDATE_RN%% diff --git a/Packs/FeedMitreAttackv2/pack_metadata.json b/Packs/FeedMitreAttackv2/pack_metadata.json index 76548081d7f8..e9a8a703112a 100644 --- a/Packs/FeedMitreAttackv2/pack_metadata.json +++ b/Packs/FeedMitreAttackv2/pack_metadata.json @@ -2,7 +2,7 @@ "name": "MITRE ATT&CK", "description": "Fetches indicators from MITRE ATT&CK.", "support": "xsoar", - "currentVersion": "1.1.24", + "currentVersion": "1.1.25", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md new file mode 100644 index 000000000000..0f18b601725a --- /dev/null +++ b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md @@ -0,0 +1,10 @@ + +#### Integrations + +##### TAXII Feed + +- %%UPDATE_RN%% + +##### TAXII 2 Feed + +- %%UPDATE_RN%% diff --git a/Packs/FeedTAXII/pack_metadata.json b/Packs/FeedTAXII/pack_metadata.json index 5d3177451ceb..21e52518284f 100644 --- a/Packs/FeedTAXII/pack_metadata.json +++ b/Packs/FeedTAXII/pack_metadata.json @@ -2,7 +2,7 @@ "name": "TAXII Feed", "description": "Ingest indicator feeds from TAXII 1 and TAXII 2 servers.", "support": "xsoar", - "currentVersion": "1.2.0", + "currentVersion": "1.2.1", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", From caa3b301ee199774fa97452f6c946447ab5f9e1b Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Wed, 1 Nov 2023 17:39:40 +0200 Subject: [PATCH 06/11] validate --- Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.yml | 4 +++- Packs/FeedDHS/ReleaseNotes/2_0_24.md | 4 ++-- Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md | 2 +- Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml | 2 +- Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml | 2 +- Packs/FeedTAXII/ReleaseNotes/1_2_1.md | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.yml b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.yml index 7da60683e3a8..d46f9677c0b8 100644 --- a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.yml +++ b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule.yml @@ -8,10 +8,12 @@ subtype: python3 tags: - infra - server -comment: Common TAXII 2 code that will be appended into each TAXII 2 integration when it's deployed +comment: Common TAXII 2 code that will be appended into each TAXII 2 integration when it's deployed. system: true scripttarget: 0 dependson: {} timeout: 0s dockerimage: demisto/taxii2:1.0.0.23423 fromversion: 5.0.0 +tests: +- No tests (auto formatted) diff --git a/Packs/FeedDHS/ReleaseNotes/2_0_24.md b/Packs/FeedDHS/ReleaseNotes/2_0_24.md index bad3d944f7e2..f23dd59cd80b 100644 --- a/Packs/FeedDHS/ReleaseNotes/2_0_24.md +++ b/Packs/FeedDHS/ReleaseNotes/2_0_24.md @@ -2,5 +2,5 @@ #### Integrations ##### DHS Feed v2 - -- %%UPDATE_RN%% + +- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 diff --git a/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md index 86d9a12c49e0..af65e5003d40 100644 --- a/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md +++ b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md @@ -3,4 +3,4 @@ ##### MITRE ATT&CK -- %%UPDATE_RN%% +- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml index 9210066f5e19..6e36f13c937a 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml @@ -183,7 +183,7 @@ script: - contextPath: TAXII.Indicator.Rawjson description: The indicator rawJSON value. type: Unknown - dockerimage: demisto/taxii:1.0.0.76522 + dockerimage: demisto/taxii:1.0.0.79300 feed: true runonce: false script: '' diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml b/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml index c15dbddc547f..d54d172055f4 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml @@ -227,7 +227,7 @@ script: - deprecated: true description: 'WARNING: This command will reset your fetch history.' name: taxii2-reset-fetch-indicators - dockerimage: demisto/taxii2:1.0.0.68089 + dockerimage: demisto/taxii2:1.0.0.79368 feed: true runonce: false script: '-' diff --git a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md index 0f18b601725a..7c1925118610 100644 --- a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md +++ b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md @@ -3,8 +3,8 @@ ##### TAXII Feed -- %%UPDATE_RN%% +- Fixed an issue where a header was missing from the http requests made in the integration. ##### TAXII 2 Feed -- %%UPDATE_RN%% +- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 From d3c7b781607158dcf54050327dad88fe9ffd9834 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Thu, 2 Nov 2023 08:44:45 +0200 Subject: [PATCH 07/11] fix test --- .../Scripts/TAXII2ApiModule/TAXII2ApiModule_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule_test.py b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule_test.py index 427711a25593..ed6ebfaab380 100644 --- a/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule_test.py +++ b/Packs/ApiModules/Scripts/TAXII2ApiModule/TAXII2ApiModule_test.py @@ -219,7 +219,7 @@ def test_default_v20(self): """ mock_client = Taxii2FeedClient(url='', collection_to_fetch='', proxies=[], verify=False, objects_to_fetch=[]) mock_client.init_server() - assert isinstance(mock_client.server, v20.Server) + assert isinstance(mock_client.server, v21.Server) def test_v21(self): """ @@ -259,7 +259,7 @@ def test_auth_key(self): objects_to_fetch=[] ) mock_client.init_server() - assert isinstance(mock_client.server, v20.Server) + assert isinstance(mock_client.server, v21.Server) assert mock_auth_header_key in mock_client.server._conn.session.headers assert mock_client.server._conn.session.headers.get(mock_auth_header_key) == mock_password From 4094675a424d2372cc5e0570c84bc320220a41dd Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Sun, 5 Nov 2023 15:33:25 +0200 Subject: [PATCH 08/11] remove taxii feed fix --- Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py | 1 - Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py index a7b32808b4d8..66e76cc239b3 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.py @@ -486,7 +486,6 @@ def headers(content_type=None, accept=None, services=None, protocol=None): return { 'Content-Type': 'application/xml', - 'Accept': 'application/xml', 'X-TAXII-Content-Type': content_type, 'X-TAXII-Accept': accept, 'X-TAXII-Services': services, diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml index 6e36f13c937a..9210066f5e19 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII/FeedTAXII.yml @@ -183,7 +183,7 @@ script: - contextPath: TAXII.Indicator.Rawjson description: The indicator rawJSON value. type: Unknown - dockerimage: demisto/taxii:1.0.0.79300 + dockerimage: demisto/taxii:1.0.0.76522 feed: true runonce: false script: '' From f5d8a49cb1997891625cc064a320a1bd955d2907 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Sun, 5 Nov 2023 15:33:49 +0200 Subject: [PATCH 09/11] rn --- Packs/FeedTAXII/ReleaseNotes/1_2_1.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md index 7c1925118610..712f85731121 100644 --- a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md +++ b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md @@ -1,10 +1,6 @@ #### Integrations -##### TAXII Feed - -- Fixed an issue where a header was missing from the http requests made in the integration. - ##### TAXII 2 Feed - Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 From 5dbf1a7e3cc3b28b9394f22cc5c487d34ee05f0a Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Wed, 8 Nov 2023 08:13:20 +0200 Subject: [PATCH 10/11] di --- Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml | 2 +- Packs/FeedTAXII/ReleaseNotes/1_2_1.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml b/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml index d54d172055f4..c9633e463f94 100644 --- a/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml +++ b/Packs/FeedTAXII/Integrations/FeedTAXII2/FeedTAXII2.yml @@ -227,7 +227,7 @@ script: - deprecated: true description: 'WARNING: This command will reset your fetch history.' name: taxii2-reset-fetch-indicators - dockerimage: demisto/taxii2:1.0.0.79368 + dockerimage: demisto/taxii2:1.0.0.80190 feed: true runonce: false script: '-' diff --git a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md index 712f85731121..6d783d1232b3 100644 --- a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md +++ b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md @@ -2,5 +2,7 @@ #### Integrations ##### TAXII 2 Feed +- Updated the Docker image to: *demisto/taxii2:1.0.0.80190*. + - Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 From c71f170c4d4fa0796e1298311d2e2b629d6fa811 Mon Sep 17 00:00:00 2001 From: MLainer1 Date: Wed, 8 Nov 2023 08:43:02 +0200 Subject: [PATCH 11/11] rn --- Packs/FeedDHS/ReleaseNotes/2_0_24.md | 2 +- Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md | 2 +- Packs/FeedTAXII/ReleaseNotes/1_2_1.md | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Packs/FeedDHS/ReleaseNotes/2_0_24.md b/Packs/FeedDHS/ReleaseNotes/2_0_24.md index f23dd59cd80b..478f56271b6f 100644 --- a/Packs/FeedDHS/ReleaseNotes/2_0_24.md +++ b/Packs/FeedDHS/ReleaseNotes/2_0_24.md @@ -3,4 +3,4 @@ ##### DHS Feed v2 -- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 +- Updated the default TAXII protocol to 2.1. diff --git a/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md index af65e5003d40..5d65b996b54f 100644 --- a/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md +++ b/Packs/FeedMitreAttackv2/ReleaseNotes/1_1_25.md @@ -3,4 +3,4 @@ ##### MITRE ATT&CK -- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 +- Updated the default TAXII protocol to 2.1. diff --git a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md index 6d783d1232b3..6d6f9faf8a4e 100644 --- a/Packs/FeedTAXII/ReleaseNotes/1_2_1.md +++ b/Packs/FeedTAXII/ReleaseNotes/1_2_1.md @@ -3,6 +3,4 @@ ##### TAXII 2 Feed - Updated the Docker image to: *demisto/taxii2:1.0.0.80190*. - - -- Fixed an issue where the default TAXII protocol was 2.0 and not 2.1 +- Updated the default TAXII protocol to 2.1.