TAXII2 Server
This integration provides TAXII2 Services for system indicators (Outbound feed).
Data Enrichment & Threat Intelligence · TAXII Server
Details
| ID | TAXII2 Server |
|---|---|
| Provider | Open Source |
| Category | Data Enrichment & Threat Intelligence |
| From Version | 6.1.0 |
| Docker Image | demisto/flask-nginx:1.0.0.11047721 |
| Supported Modules | Agentix XSIAM |
README
TAXII2 Server Integration
This integration provides TAXII2 Services for system indicators (outbound feed).
You can choose to use TAXII v2.0 or TAXII v2.1.
The TAXII2 Server integration is a long-running integration. For more information about long-running integrations, see the Cortex XSOAR 8 Cloud, Cortex XSOAR 8 On-prem or Cortex XSIAM documentation.
Configure Collections
Each TAXII collection in the integration is represented by a Cortex XSOAR indicator query.
The collections are defined by a JSON object in the following format:
{
"collection1_name":{
"query": "<Cortex XSOAR indicator query>",
"description": "<Custom collection description>"
},
"collection2_name": "<Cortex XSOAR indicator query>"
}
You can add a collection description as is done in collection1_name, or enter only a collection query, as in collection2_name.
How to Access the TAXII2 Server
For Cortex XSOAR 6.x
Use one of the following options:
https://<xsoar_address>/instance/execute/<instance_name>/<taxii2_api_endpoint>/http://<xsoar_address>:<listen_port>/<taxii2_api_endpoint>/
For Cortex XSOAR 8 On-prem, Cortex XSOAR 8 Cloud, or Cortex XSIAM
Use https://ext-<tenant>/xsoar/instance/execute/<instance-name>/<taxii2_api_endpoint>/
Note:
- For Cortex XSOAR 8 On-prem, you need to add the
ext-FQDN DNS record to map the Cortex XSOAR DNS name to the external IP address.
For example,ext-xsoar.mycompany.com. - The instance name cannot be changed after saving the integration configuration.
Access the TAXII Service by Instance Name
To access the TAXII service by instance name, make sure Instance execute external is enabled.
In Cortex XSOAR 6.x:
- Navigate to Settings > About > Troubleshooting.
- In the Server Configuration section, verify that the instance.execute.external key is set to true. If this key does not exist, click + Add Server Configuration, add the instance.execute.external and set the value to true.
How to Use HTTPS
To use HTTPS, a certificate and private key have to be supplied in the integration configuration.
Set up Authentication
For Cortex XSOAR 8 Cloud Tenant or Cortex XSIAM Tenant
The TAXII2 Server integration running on a Cortex XSOAR 8 Cloud tenant or Cortex XSIAM tenant enables using basic authentication in the requests.
To enable basic authentication, a user and password must be supplied in the Credentials parameters in the integration configuration.
The server will then authenticate the requests by the Authorization header, expecting basic authentication encrypted in base64 to match the given credentials.
For Cortex XSOAR On-prem (6.x or 8) or When Using Engines
For Cortex XSOAR On-prem (6.x or 8) or when using engines, you can set up authentication using custom certificates. For more information on setting up a custom certificate for Cortex XSOAR 8 On-prem, see HTTPS with a signed certificate. For more information on setting up a custom certificate for Cortex XSOAR 6.x, see HTTPS with a Signed Certificate.
TAXII v2.0 API Endpoints
| URL | Method | Response | TAXII2 Documentation |
|---|---|---|---|
| /taxii/ | GET | Server Discovery Information. | Server Discovery |
| /{api_root}/ | GET | Cortex XSOAR API root is threatintel. | API Root Information |
| /{api_root}/collections/ | GET | All Cortex XSOAR collections that configure in Collection JSON parameter. | Collections Resource |
| /{api_root}/collections/{collection_id}/ | GET | Cortex XSOAR Collection with given collection_id. | Collection Response |
| /{api_root}/collections/{collection_id}/manifest/ | GET | Object manifests from the given collection. | Objects Manifest Resource |
| /{api_root}/collections/{collection_id}/objects/ | GET | Objects (Cortex XSOAR Indicators) from the given collection. | Object Resource |
For more information, visit TAXII2 Documentation.
TAXII v2.1 API Endpoints
| URL | Method | Response | TAXII2 Documentation |
|---|---|---|---|
| /taxii2/ | GET | Server Discovery Information. | Server Discovery |
| /{api_root}/ | GET | XSOAR API root is threatintel. | API Root Information |
| /{api_root}/collections/ | GET | All Cortex XSOAR collections that configure in Collection JSON parameter. | Collections Resource |
| /{api_root}/collections/{collection_id}/ | GET | Cortex XSOAR Collection with given collection_id. | Collection Response |
| /{api_root}/collections/{collection_id}/manifest/ | GET | Object manifests from the given collection. | Objects Manifest Resource |
| /{api_root}/collections/{collection_id}/objects/ | GET | Objects (Cortex XSOAR Indicators and Relationships) from the given collection. | Object Resource |
For more information, visit TAXII2 Documentation.
- When retrieving Objects (Cortex XSOAR Indicators and Relationships) from a collection, use the next parameter to paginate through additional records.
Known Limitations
- GET objects by ID is not allowed.
- Filtering objects by ID or version not allowed.
- POST and DELETE objects are not allowed. Cannot add or delete indicators using TAXII2 Server.
How UUIDs Work for TAXII2 in Cortex XSOAR
STIX Cyber Objects (SCO)
All STIX SCOs UUIDs follow STIX 2.1 guidelines and use UUID5 with STIX unique namespace
(00abedb4-aa42-466c-9c01-fed23315a9b7). This is used so all SCOs created have persistent UUID across all producers.
STIX Domain Objects (SDO)
Unlike SCOs, STIX 2.1 specs for SDOs require a UUID4. While this solution works if the UUID is part of the database,
it is not the case in Cortex XSOAR. If the SDO already has a unique UUID stored it will use it, if not it will generate a unique and persistent UUID using the following method.
A general UUID5 is created using the NameSpace_URL as follows:
PAWN_UUID = uuid.uuid5(uuid.NAMESPACE_URL, 'https://www.paloaltonetworks.com')
The generated UUID is then used to create a unique UUID5 per customer:
UNIQUE_UUID = uuid.uuid5(PAWN_UUID, <UniqueCostumerString>)
We then use this UUID as a base namespace to generate UUIDs for SDOs following the STIX 2.1 specs. Using this method,
we create unique and persistent UUIDs per customer.
Cortex XSOAR TIM Extension Fields
When selected in the integration settings (Cortex XSOAR Extension Fields) the TAXII2 integration will generate an extension object and an extension attribute that holds Cortex XSOAR additional
TIM fields (system generated and custom). An example of these two related objects:
{
"id": "extension-definition--<UUID>",
"type": "extension-definition",
"spec_version": "2.1",
"name": "XSOAR TIM <Cortex XSOAR Type>",
"description": "This schema adds TIM data to the object",
"created": "<creation date>",
"modified": "<modification date>",
"created_by_ref": "identity--<UUID of creator>",
"schema": "https://github.com/demisto/content/blob/4265bd5c71913cd9d9ed47d9c37d0d4d3141c3eb/Packs/TAXIIServer/doc_files/XSOAR_indicator_schema.json",
"version": "1.0",
"extension_types": ["property-extension"]
},
{
"type": "ipv4-addr",
"spec_version": "2.1",
"id": "ipv4-addr--2f689bf9-0ff2-545f-aa61-e495eb8cecc7",
"value": "8.8.8.8",
"extensions":{
"extension-definition--<UUID>": {
"Extension_type": "property_extension",
"Field_1": "Value1",
"Field_2": "Value2",
"Field_3": "Value3"
}
}
}
Performance Benchmark
| Indicators Amount | Request time (seconds) |
|---|---|
| 10,000 | 5-10 |
| 50,000 | 30-40 |
| 100,000 | 50-90 |
Microsoft Sentinel Configuration Guide
Configure the TAXII2 Server Instance
-
Set TAXII2 Server version to 2.0 (The integration currently doesn’t work with Microsoft Sentinel in TAXII Version 2.1).
-
Under STIX types for STIX indicator Domain Object select the indicator types you want to ingest.
-
Set the Listen Port and Collection JSON to your linking.
Find the Information Required for the Sentinel TAXII Connector
For Cortex XSOAR 6.x
- All your server info can be found by running
!taxii-server-info, the default API root for you server will usually be -https://<xsoar-server>/instance/execute/<instance_name>/threatintel/ - You can use the
!taxii-server-list-collectionscommand in order to get a list of your server’s collections and their IDs. You can also do it manually by runningcurl https://<xsoar-server>/instance/execute/<instance_name>/threatintel/collections/ | jq .to get a list of the collections available and on your TAXII server. From the list, copy the correct ID of the collection you want to ingest.
For Cortex XSOAR 8 On-prem, Cortex XSOAR Cloud, or Cortex XSIAM
- All your server info can be found by running
!taxii-server-info, the default API root for you server will usually be -https://ext-<tenant>.crtx.<region>.paloaltonetworks.com/xsoar/instance/execute/<instance-name>/threatintel/ - You can use the
!taxii-server-list-collectionscommand in order to get a list of your server’s collections and their IDs. You can also do it manually by runningcurl https://ext-<tenant>.crtx.<region>.paloaltonetworks.com/xsoar/instance/execute/<instance-name>/threatintel/collections/ | jq .to get a list of the collections available and on your TAXII server. From the list, copy the correct ID of the collection you want to ingest.
Response Example:
{
"collections": [
{
"can_read": true,
"can_write": false,
"description": "",
"id": "3709e6df-bbe1-5ece-b683-e99a42f31fce",
"media_types": [
"application/vnd.oasis.stix+json; version=2.0"
],
"query": "type:IP",
"title": "AllIPs"
},
{
"can_read": true,
"can_write": false,
"description": "",
"id": "16763019-5ee6-59bc-b4d9-be586235b308",
"media_types": [
"application/vnd.oasis.stix+json; version=2.0"
],
"query": "type:File",
"title": "AllHashes"
}
]
}
Set up the Microsoft Sentinel TAXII Connector
Now that we have the API root URL and the collection ID we can configure the Threat intelligence - TAXII Connector in Microsoft Sentinel.
Paste your API root URL in the field marked API Root URL and the desired collection ID we got in step (2) under Collection ID.
Example:

Commands
You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.
taxii-server-list-collections
Returns all the collections.
Base Command
taxii-server-list-collections
Input
There are no input arguments for this command.
Context Output
| Path | Type | Description |
|---|---|---|
| TAXIIServer.Collection.id | String | The collection ID. |
| TAXIIServer.Collection.query | String | The collection query. |
| TAXIIServer.Collection.title | String | The collection title. |
| TAXIIServer.Collection.description | String | The collection description. |
Command example
#### Context Example
```json
{
"TAXIIServer": {
"Collection": {
"can_read": true,
"can_write": false,
"description": "",
"id": "2eb7bfae-7739-5863-9b00-1681309c3d8c",
"media_types": [
"application/stix+json;version=2.1"
],
"query": "",
"title": "ALL"
}
}
}
Human Readable Output
Collections
id title query description 2eb7bfae-7739-5863-9b00-1681309c3d8c ALL
taxii-server-info
Returns the TAXII server info, default URL, title, etc.
Base Command
taxii-server-info
Input
There are no input arguments for this command.
Context Output
| Path | Type | Description |
|---|---|---|
| TAXIIServer.ServerInfo.title | String | The server title |
| TAXIIServer.ServerInfo.api_roots | Unknown | The server API roots URLs. |
| TAXIIServer.ServerInfo.default | String | The default URL. |
| TAXIIServer.ServerInfo.description | String | The server description |
Command Example
#### Context Example
```json
{
"TAXIIServer": {
"ServerInfo": {
"api_roots": [
"https://foo.cooo.com/inc/threatintel/"
],
"default": "https://foo.cooo.com/inc/threatintel/",
"description": "This integration provides TAXII Services for system indicators (Outbound feed).",
"title": "Cortex XSOAR TAXII2 Server"
}
}
}
Human Readable Output
In case the default URL is incorrect, you can override it by setting the “TAXII2 Service URL Address” field in the integration configuration
Server Info
api_roots default description title https://foo.cooo.com/inc/threatintel/ https://foo.cooo.com/inc/threatintel/ This integration provides TAXII Services for system indicators (Outbound feed). Cortex XSOAR TAXII2 Server
Troubleshooting
429 Too Many Requests error
NGINX prevents concurrent builds of the same cache entry. If multiple requests for the same cache entry (matching the URL and parameters) arrive simultaneously, NGINX builds the entry for the first request and rejects the others with an HTTP 429 Too Many Requests rather than queuing them. Requests for different entries are still processed in parallel. If a request triggers a refresh of an existing cache entry, the previous data is served (HTTP 200) with no 429.
This is expected behavior. Retry the request after a short delay; once the initial build finishes populating the cache, retries are served from the cache (HTTP 200).
[Errno 98] Address in use error
Each instance uses three consecutive ports: the configured Listen Port, port + 1, and port + 2. NGINX listens on the configured port (public), the Python process listens on port + 1, and NGINX uses port + 2 internally for its fail-fast cache fetch tier. For example, if configured for port 9009, ports 9009, 9010, and 9011 must all be free. Ensure no other instance uses a Listen Port within 2 of another, or an [Errno 98] Address in use error will occur. When running without --network=host, ports + 1 and + 2 are not exposed to the machine.
Configuration parameters
longRunning— Long Running Instanceversion— TAXII2 Server version (required)credentials— Usernamecollections— Collection JSON (required)fields_filter— Cortex XSOAR Extension fieldsres_size— Response Size (required)certificate— Certificate (Required for HTTPS)key— Private Key (Required for HTTPS)hsts_header— Add HSTS headerservice_address— TAXII2 Service URL AddresslongRunningPort— Listen Port (required)nginx_global_directives— NGINX Global Directivesnginx_server_conf— NGINX Server Confcache_refresh_rate— Refresh Ratecache_lock_timeout— Cache Lock Timeout (Deprecated)cache_lock_age— Cache Lock Age (Deprecated)cache_404_ttl— Cache 404 TTLcache_default_ttl— Cache Default TTLprovide_as_indicator— STIX types for STIX indicator Domain Objectcache_duration_hours— Search-after cache duration hours (required)
Commands (2)
-
taxii-server-infoReturns the TAXII server info, default URL, title, etc.
-
taxii-server-list-collectionsReturns all the collections.
import functools import json import uuid from collections.abc import Callable from secrets import compare_digest from urllib.parse import ParseResult, urlparse import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 from flask import Flask, Response, jsonify, make_response, request from requests.utils import requote_uri from werkzeug.exceptions import RequestedRangeNotSatisfiable """ GLOBAL VARIABLES """ HTTP_200_OK = 200 HTTP_400_BAD_REQUEST = 400 HTTP_401_UNAUTHORIZED = 401 HTTP_404_NOT_FOUND = 404 HTTP_406_NOT_ACCEPTABLE = 406 HTTP_416_RANGE_NOT_SATISFIABLE = 416 INTEGRATION_NAME: str = "TAXII2 Server" API_ROOT = "threatintel" APP: Flask = Flask("demisto-taxii2Z") NAMESPACE_URI = "https://www.paloaltonetworks.com/cortex" MEDIA_TYPE_TAXII_ANY = "application/taxii+json" MEDIA_TYPE_STIX_ANY = "application/stix+json" MEDIA_TYPE_TAXII_V21 = "application/taxii+json;version=2.1" MEDIA_TYPE_STIX_V21 = "application/stix+json;version=2.1" MEDIA_TYPE_TAXII_V20 = "application/vnd.oasis.taxii+json; version=2.0" MEDIA_TYPE_STIX_V20 = "application/vnd.oasis.stix+json; version=2.0" SCO_DET_ID_NAMESPACE = uuid.UUID("00abedb4-aa42-466c-9c01-fed23315a9b7") STIX_DATE_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ" UTC_DATE_FORMAT = "%Y-%m-%dT%H:%M:%SZ" TAXII_V20_CONTENT_LEN = 9765625 TAXII_V21_CONTENT_LEN = 104857600 TAXII_REQUIRED_FILTER_FIELDS = { "name", "type", "modified", "createdTime", "description", "accounttype", "userid", "mitreid", "stixid", "reportobjectreferences", "keyvalue", "tags", "subject", "issuer", "validitynotbefore", "validitynotafter", "expiration", } TAXII_V20_REQUIRED_FILTER_FIELDS = {"tags", "identity_class"} TAXII_V21_REQUIRED_FILTER_FIELDS = {"ismalwarefamily", "published"} SEARCH_AFTER_KEY_NAME = "search_after_cache" # we want to save extra space in the response for relationships items without exceed the limit. # so if the res size is 100 - the indicators query limit is 90. STIX_PERCENTAGE = 0.9 PAGE_SIZE = int(int(demisto.params().get("res_size", 2000)) * STIX_PERCENTAGE) """ TAXII2 Server """ class TAXII2Server: def __init__( self, url_scheme: str, host: str, port: int, collections: dict, certificate: str, private_key: str, http_server: bool, credentials: dict, version: str, service_address: Optional[str] = None, fields_to_present: Optional[set] = None, types_for_indicator_sdo: Optional[list] = None, ): """ Class for a TAXII2 Server configuration. Args: url_scheme: The URL scheme (http / https) host: The server address. port: The server port. collections: The JSON string of collections of indicator queries. certificate: The server certificate for SSL. private_key: The private key for SSL. http_server: Whether to use HTTP server (not SSL). credentials: The user credentials. version: API version. fields_to_present: indicator fields to return in the request. types_for_indicator_sdo: The list of stix types to provide indicator stix domain objects. """ self._url_scheme = url_scheme self._host = host.replace(".xdr", ".crtx") self._port = port self._certificate = certificate self._private_key = private_key self._http_server = http_server self._service_address = service_address self.fields_to_present = fields_to_present self.has_extension = fields_to_present != {"name", "type"} self._auth = None if credentials and (identifier := credentials.get("identifier")) and (password := credentials.get("password")): self._auth = (identifier, password) self.version = version if version not in [TAXII_VER_2_0, TAXII_VER_2_1]: raise Exception(f"Wrong TAXII 2 Server version: {version}. Possible values: {TAXII_VER_2_0}, {TAXII_VER_2_1}.") self._collections_resource: list = [] self.collections_by_id: dict = {} self.namespace_uuid = uuid.uuid5(PAWN_UUID, demisto.getLicenseID()) self.create_collections(collections) self.types_for_indicator_sdo = types_for_indicator_sdo or [] @property def taxii_collections_media_type(self): media_type = MEDIA_TYPE_STIX_ANY if self.version == TAXII_VER_2_0: media_type = MEDIA_TYPE_STIX_V20 elif self.version == TAXII_VER_2_1: media_type = MEDIA_TYPE_STIX_V21 return media_type @property def taxii_content_type(self): content_type = MEDIA_TYPE_TAXII_ANY if self.version == TAXII_VER_2_0: content_type = MEDIA_TYPE_TAXII_V20 elif self.version == TAXII_VER_2_1: content_type = MEDIA_TYPE_TAXII_V21 return content_type @property def discovery_route(self): discovery_route = "/taxii/" if self.version == TAXII_VER_2_1: discovery_route = "/taxii2/" return discovery_route @property def api_version(self): api_root_version = "taxii-2.0" if self.version == TAXII_VER_2_1: api_root_version = MEDIA_TYPE_TAXII_V21 return api_root_version @property def auth(self): return self._auth def create_collections(self, collections: dict): """ Creates collection resources from collection params. """ collections_resource = [] collections_by_id = {} for name, query_dict in collections.items(): description = "" if isinstance(query_dict, dict): query = query_dict.get("query") description = query_dict.get("description", "") else: query = query_dict if query is None: raise Exception("Collection query is required.") collection_uuid = str(uuid.uuid5(self.namespace_uuid, "Collection_" + name)) collection = { "id": collection_uuid, "title": name, "description": description, "can_read": True, "can_write": False, "media_types": [self.taxii_collections_media_type], "query": query, } collections_resource.append(collection) collections_by_id[collection_uuid] = collection self._collections_resource = collections_resource self.collections_by_id = collections_by_id def get_discovery_service(self, instance_execute=False) -> dict: """ Handle discovery request. Returns: The discovery response. """ if self._service_address: service_address = self._service_address elif instance_execute or (request.headers and "/instance/execute" in request.headers.get("X-Request-URI", "")): # if the server rerouting is used, then the X-Request-URI header is added to the request by the server # and we should use the /instance/execute endpoint in the address self._url_scheme = "https" calling_context = get_calling_context() instance_name = calling_context.get("IntegrationInstance", "") endpoint = requote_uri(os.path.join("/instance", "execute", instance_name)) if is_xsiam_or_xsoar_saas() and not instance_execute: service_address = f"{self._url_scheme}://ext-{self._host}/xsoar{endpoint}" else: service_address = f"{self._url_scheme}://{self._host}{endpoint}" else: endpoint = f":{self._port}" if is_xsiam_or_xsoar_saas() and not instance_execute: service_address = f"{self._url_scheme}://ext-{self._host}/xsoar{endpoint}" else: service_address = f"{self._url_scheme}://{self._host}{endpoint}" default = urljoin(service_address, API_ROOT) default = urljoin(default, "/") return { "title": "Cortex XSOAR TAXII2 Server", "description": "This integration provides TAXII Services for system indicators (Outbound feed).", "default": default, "api_roots": [default], } def get_api_root(self) -> dict: """ Handle API Root request. Returns: The API ROOT response. """ return { "title": "Cortex XSOAR TAXII2 Server ThreatIntel", "description": "This API Root provides TAXII Services for system indicators.", "versions": [self.api_version], "max_content_length": TAXII_V20_CONTENT_LEN if self.version == TAXII_VER_2_0 else TAXII_V21_CONTENT_LEN, } def get_collections(self) -> dict: """ Handle Collections request. Returns: The Collections response. """ return {"collections": self._collections_resource} def get_collection_by_id(self, collection_id: str) -> Optional[dict]: """ Handle Collection ID request. Returns: The Collection with given ID response. """ found_collection = self.collections_by_id.get(collection_id) # type: Optional[dict] return found_collection def get_manifest(self, collection_id: str, added_after, limit: int, offset: int, types: list) -> tuple: """ Handle Manifest request. Returns: The objects from given collection ID. """ found_collection = self.collections_by_id.get(collection_id, {}) query = found_collection.get("query") iocs, _, total, use_search_after = find_indicators( query=query, types=types, added_after=added_after, limit=limit, offset=offset, is_manifest=True, collection_id=collection_id, ) demisto.debug(f"T2S: after find_indicators {iocs}") first_added = None last_added = None if use_search_after: # returns the iocs without calculate offset objects = iocs demisto.info(f"T2S: total IOCs fetched for collection {collection_id} : {(offset + limit) * STIX_PERCENTAGE}") else: objects = iocs[offset : offset + limit] if iocs and not objects: raise RequestedRangeNotSatisfiable if len(objects) < len(iocs): demisto.info(f"T2S: WARNING: number of created IOCs is higher than limit {len(objects)=} {len(iocs)=}") if objects: first_added = objects[-1].get("date_added") last_added = objects[0].get("date_added") demisto.debug(f"T2S: get_manifest {objects=}") response = { "objects": objects, } if self.version == TAXII_VER_2_1 and total > (offset + limit) * STIX_PERCENTAGE: response["more"] = True response["next"] = str(limit + offset) content_range = f"items {offset}-{len(objects)}/{total}" demisto.debug(f"T2S: {len(objects)=}") return response, first_added, last_added, content_range def get_objects(self, collection_id: str, added_after, limit: int, offset: int, types: list) -> tuple: """ Handle Objects request. Returns: The objects from given collection ID. """ found_collection = self.collections_by_id.get(collection_id, {}) query = found_collection.get("query") demisto.debug(f"T2S: calling find_indicators with {query=} {types=} {added_after=} {limit=} {offset=}") iocs, extensions, total, use_search_after = find_indicators( query=query, types=types, added_after=added_after, limit=limit, offset=offset, collection_id=collection_id ) first_added = None last_added = None limited_extensions = None if use_search_after: # returns the iocs without calculate offset objects = iocs limited_iocs = iocs demisto.info(f"T2S: total IOCs fetched for collection {collection_id} : {(offset + limit) * STIX_PERCENTAGE}") else: limited_iocs = iocs[offset : offset + limit] if iocs and not limited_iocs: raise RequestedRangeNotSatisfiable objects = limited_iocs if len(objects) < len(iocs): demisto.info(f"T2S: WARNING: number of created IOCs is higher than limit {len(objects)=} {len(iocs)=}") if SERVER.has_extension: limited_extensions = get_limited_extensions(limited_iocs, extensions) objects.extend(limited_extensions) if limited_iocs: first_added = limited_iocs[-1].get("created") last_added = limited_iocs[0].get("created") response = {} if self.version == TAXII_VER_2_0: response = {"type": "bundle", "objects": objects, "id": f"bundle--{uuid.uuid4()}"} elif self.version == TAXII_VER_2_1: response = { "objects": objects, } if total > (offset + limit) * STIX_PERCENTAGE: response["more"] = True response["next"] = str(limit + offset) content_range = f"items {offset}-{len(limited_iocs)}/{total}" demisto.debug(f"T2S: {len(objects)=}") return response, first_added, last_added, content_range SERVER: TAXII2Server = None # type: ignore[assignment] """ HELPER FUNCTIONS """ def get_limited_extensions(limited_iocs, extensions): """ Args: limited_iocs: List of the limited iocs. extensions: List of all the generated extensions to limit. Returns: List of the limited extensions related to the limited iocs. """ limited_extensions = [] required_extensions_ids = [] for ioc in limited_iocs: required_extensions_ids.extend(list(ioc.get("extensions", {}).keys())) for extension in extensions: if extension.get("id") in required_extensions_ids: limited_extensions.append(extension) return limited_extensions def remove_spaces_from_header(header: str | list) -> str | list: """Remove spaces from a header or list of headers. Args: header (str | list): A single header or a list of headers to remove spaces from. Returns: str | list: The header or list of headers without spaces. """ if isinstance(header, list): return [value.replace(" ", "") for value in header] return header.replace(" ", "") def taxii_validate_request_headers(f: Callable) -> Callable: @functools.wraps(f) def validate_request_headers(*args, **kwargs): """ function for HTTP requests to validate authentication and Accept headers. """ accept_headers = [ MEDIA_TYPE_TAXII_ANY, MEDIA_TYPE_TAXII_V20, MEDIA_TYPE_STIX_V20, MEDIA_TYPE_TAXII_V21, MEDIA_TYPE_STIX_V21, ] credentials = request.authorization if SERVER.auth: if credentials: try: auth_success = ( compare_digest(credentials.username, SERVER.auth[0]) # type: ignore[type-var] and compare_digest(credentials.password, SERVER.auth[1]) ) # type: ignore[type-var] except TypeError: auth_success = False else: auth_success = False if not auth_success: return handle_response(HTTP_401_UNAUTHORIZED, {"title": "Authorization failed"}) request_headers = request.headers # v2.0 headers has a space while v2.1 does not, # this caused confusion with platforms sometimes sending a header with or without space. # to avoid issues the Accept header is stripped from the spaces before validation. accept_header = request_headers.get("Accept") if (not accept_header) or (remove_spaces_from_header(accept_header) not in remove_spaces_from_header(accept_headers)): return handle_response( HTTP_406_NOT_ACCEPTABLE, { "title": "Invalid TAXII Headers", "description": f"Invalid Accept header: {accept_header}, " f"please use one ot the following Accept headers: " f"{accept_headers}", }, ) possible_v20_headers = [MEDIA_TYPE_TAXII_V20, MEDIA_TYPE_STIX_V20] + list( remove_spaces_from_header([MEDIA_TYPE_TAXII_V20, MEDIA_TYPE_STIX_V20]) ) if SERVER.version == TAXII_VER_2_1 and accept_header in possible_v20_headers: return handle_response( HTTP_406_NOT_ACCEPTABLE, { "title": "Invalid TAXII Header", "description": "The media type (version=2.0) provided in the Accept header" " is not supported on TAXII v2.1.", }, ) return f(*args, **kwargs) return validate_request_headers def taxii_validate_url_param(f: Callable) -> Callable: @functools.wraps(f) def validate_url_param(*args, **kwargs): """ function for HTTP/HTTPS requests to validate api_root and collection_id. """ api_root = kwargs.get("api_root") collection_id = kwargs.get("collection_id") if api_root and api_root != API_ROOT: return handle_response( HTTP_404_NOT_FOUND, { "title": "Unknown API Root", "description": f"Unknown API Root {api_root}. Check possible API Roots using '{SERVER.discovery_route}'", }, ) if collection_id and not SERVER.collections_by_id.get(collection_id): return handle_response( HTTP_404_NOT_FOUND, { "title": "Unknown Collection", "description": f'No collection with id "{collection_id}". ' f'Use "/{api_root}/collections/" to get ' f"all existing collections.", }, ) return f(*args, **kwargs) return validate_url_param def create_fields_list(fields: str) -> set: if not fields: return {"name", "type"} elif fields.lower() == "all": return set() fields_list = argToList(fields) new_list = set() for field in fields_list: if field == "value": field = "name" elif field == "indicator_type": field = "type" new_list.add(field) return new_list def handle_long_running_error(error: str): """ Handle errors in the long running process. Args: error: The error message. """ demisto.error(traceback.format_exc()) demisto.updateModuleHealth(error) def handle_response( status_code: int, content: dict, date_added_first: str = None, date_added_last: str = None, content_type: str = None, content_range: str = None, query_time: str = None, ) -> Response: """ Create an HTTP taxii response from a taxii message. Args: query_time: time query took content_range: Content-Range response header status_code: status code to return content_type: response content type to return date_added_last: last added item creation time date_added_first: first added item creation time content: response data Returns: A taxii HTTP response. """ if not content_type: content_type = SERVER.taxii_content_type headers = { "Content-Type": content_type, } if status_code == HTTP_401_UNAUTHORIZED: headers["WWW-Authenticate"] = 'Basic realm="Authentication Required"' if date_added_first: headers["X-TAXII-Date-Added-First"] = date_added_first if date_added_last: headers["X-TAXII-Date-Added-Last"] = date_added_last if SERVER.version == TAXII_VER_2_0 and content_range: headers["Content-Range"] = content_range if query_time: headers["X-TAXII2SERVER-Query-Time-Secs"] = query_time return make_response(jsonify(content), status_code, headers) def create_query(query: str, types: list[str], added_after: str) -> str: """ Args: query: collections query types: indicator types to filter by Returns: New query with types params """ new_query = "" if types: demisto.debug(f"{INTEGRATION_NAME}: raw query: {query}") xsoar_types: list = [] for t in types: xsoar_type = STIX2_TYPES_TO_XSOAR.get(t, t) xsoar_types.extend(xsoar_type if isinstance(xsoar_type, tuple) else (xsoar_type,)) if query.strip(): new_query = f"({query})" if or_part := (" or ".join(f'type:"{x}"' for x in xsoar_types)): new_query += f" and ({or_part})" demisto.debug(f"{INTEGRATION_NAME}: modified query, after adding types: {new_query}") query = new_query return f'{query} and modified:>="{added_after}"' if added_after else f"{query}" def set_field_filters(is_manifest: bool = False) -> Optional[str]: """ Args: is_manifest: whether this call is for manifest or indicators Returns: A string of filters. """ if is_manifest: field_filters: Optional[str] = ",".join(TAXII_REQUIRED_FILTER_FIELDS) elif SERVER.fields_to_present: fields_by_version = ( TAXII_V20_REQUIRED_FILTER_FIELDS if SERVER.version == TAXII_VER_2_0 else TAXII_V21_REQUIRED_FILTER_FIELDS ) set_fields = set.union(SERVER.fields_to_present, TAXII_REQUIRED_FILTER_FIELDS, fields_by_version) field_filters = ",".join(set_fields) # type: ignore[arg-type] else: field_filters = None return field_filters def search_indicators(field_filters: Optional[str], query: str, limit: int, search_after: list = None) -> IndicatorsSearcher: """ Args: field_filters: filter query: query limit: response items limit search_after: A cursor-like list used for pagination to retrieve results that come after the last item from a previous search. Returns: IndicatorsSearcher. """ if search_after: return IndicatorsSearcher( filter_fields=field_filters, query=query, limit=limit, size=PAGE_SIZE, sort=[{"field": "modified", "asc": True}, {"field": "id", "asc": True}], search_after=search_after, ) return IndicatorsSearcher( filter_fields=field_filters, query=query, limit=limit, size=PAGE_SIZE, sort=[{"field": "modified", "asc": True}, {"field": "id", "asc": True}], ) def find_indicators( query: str, types: list, added_after, limit: int, offset: int, is_manifest: bool = False, collection_id: str = None ) -> tuple: """ Args: query: search indicators query types: types to query by added_after: search indicators after this date limit: response items limit offset: response offset is_manifest: whether this call is for manifest or indicators collection_id: collection id to query it objects Returns: Created indicators and its extensions. """ new_query = create_query(query, types, added_after) new_limit = offset + limit field_filters = set_field_filters(is_manifest) use_search_after = False limit = PAGE_SIZE # remove old search_after values from the context cache integration_context = get_integration_context(True) remove_old_cache(integration_context) # check if there is a search_after value for this collection with this offset search_after_offset = int(offset * STIX_PERCENTAGE) if integration_context.get(SEARCH_AFTER_KEY_NAME, {}).get(collection_id, {}).get(str(search_after_offset)): search_after = integration_context[SEARCH_AFTER_KEY_NAME][collection_id][str(search_after_offset)] indicator_searcher = search_indicators(field_filters, new_query, limit, search_after["search_after"]) use_search_after = True else: demisto.info(f"{INTEGRATION_NAME}: search indicators parameters is {field_filters=}, {new_query=}, {new_limit=}") indicator_searcher = search_indicators(field_filters, new_query, new_limit) XSOAR2STIXParser_client = XSOAR2STIXParser( server_version=SERVER.version, namespace_uuid=SERVER.namespace_uuid, fields_to_present=SERVER.fields_to_present, types_for_indicator_sdo=SERVER.types_for_indicator_sdo, ) iocs, extensions, total = XSOAR2STIXParser_client.create_indicators(indicator_searcher, is_manifest) # in case search_after_param returns in the query result - save it to the cache for the next request if indicator_searcher._search_after_param: if SEARCH_AFTER_KEY_NAME not in integration_context: integration_context[SEARCH_AFTER_KEY_NAME] = {} if collection_id not in integration_context.get(SEARCH_AFTER_KEY_NAME): integration_context[SEARCH_AFTER_KEY_NAME][collection_id] = {} # Set the value integration_context[SEARCH_AFTER_KEY_NAME][collection_id][ str(indicator_searcher._total_iocs_fetched + search_after_offset) ] = { "search_after": indicator_searcher._search_after_param, "last_updated": datetime.now(timezone.utc).isoformat(), } set_integration_context(integration_context) demisto.info(f"{integration_context=}") return iocs, extensions, total, use_search_after def remove_old_cache(integration_context: dict) -> None: """Remove expired entries from cache['search_after_cache'] if older than cache_duration_hours.""" now = datetime.now(timezone.utc) cache_duration_hours = int(demisto.params().get("cache_duration_hours", 48)) expiry_time = timedelta(hours=cache_duration_hours) search_cache = integration_context.get(SEARCH_AFTER_KEY_NAME) if not isinstance(search_cache, dict): return for collection_id, time_dict in list(search_cache.items()): for offset, data in list(time_dict.items()): last_updated_str = data.get("last_updated") if not last_updated_str: continue try: last_updated = datetime.fromisoformat(last_updated_str) except ValueError: continue if now - last_updated > expiry_time: del time_dict[offset] demisto.debug(f"remove_old_cache removed {collection_id=} {offset=} {data} from cache") # Clean up empty nested dicts if not time_dict: search_cache.pop(collection_id, None) def parse_content_range(content_range: str) -> tuple: """ Args: content_range: the content-range or range header to parse. Returns: Offset and limit arguments for the command. """ try: range_type, range_count = content_range.split(" ", 1) range_count_arr = range_count.split("/") range_begin, range_end = range_count_arr[0].split("-", 1) offset = int(range_begin) limit = int(range_end) - offset if range_type != "items" or range_end < range_begin or limit < 0 or offset < 0: raise Exception except Exception: raise RequestedRangeNotSatisfiable(description=f"Range header: {content_range}") return offset, limit def get_collections(params: Optional[dict] = None) -> dict: """ Gets the indicator query collections from the integration parameters. """ params = params or demisto.params() collections_json: str = params.get("collections", "") try: collections = json.loads(collections_json) except Exception: raise ValueError("The collections string must be a valid JSON object.") return collections def get_calling_context(): return demisto.callingContext.get("context", {}) # type: ignore[attr-defined] def parse_manifest_and_object_args() -> tuple: """Parses request args for manifest and objects requests.""" added_after = request.args.get("added_after") types = argToList(request.args.get("match[type]")) try: res_size = int(demisto.params().get("res_size")) except ValueError as e: raise ValueError(f"Invalid Response Size - {e}") offset = 0 limit = res_size if request.args.get("match[id]") or request.args.get("match[version]"): raise NotImplementedError("Filtering by ID or version is not supported.") try: if added_after: datetime.strptime(added_after, UTC_DATE_FORMAT) except ValueError: try: if added_after: datetime.strptime(added_after, STIX_DATE_FORMAT) except Exception as e: raise Exception(f"Added after time format should be YYYY-MM-DDTHH:mm:ss.[s+]Z. {e}") if SERVER.version == TAXII_VER_2_0: if content_range := request.headers.get("Content-Range"): offset, limit = parse_content_range(content_range) elif range := request.headers.get("Range"): offset, limit = parse_content_range(range) elif SERVER.version == TAXII_VER_2_1: next = request.args.get("next") limit_arg = request.args.get("limit") offset = int(next) if next else 0 limit = int(limit_arg) if limit_arg else limit if limit > res_size: limit = res_size return added_after, offset, limit, types """ ROUTE FUNCTIONS """ @APP.route("/taxii/", methods=["GET"]) # TAXII v2.0 @APP.route("/taxii2/", methods=["GET"]) # TAXII v2.1 @taxii_validate_request_headers def taxii2_server_discovery() -> Response: """ Defines TAXII API - Server Information: Server Discovery section (4.1) `here for v2.1 <https://docs.oasis-open.org/cti/taxii/v2.1/cs01/taxii-v2.1-cs01.html#_Toc31107526>`__ and `here for v2.0 <http://docs.oasis-open.org/cti/taxii/v2.0/cs01/taxii-v2.0-cs01.html#_Toc496542727>`__ Returns: discovery: A Discovery Resource upon successful requests. """ try: discovery_response = SERVER.get_discovery_service() except Exception as e: error = f"Could not perform the discovery request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "Discovery Request Error", "description": error}) return handle_response(HTTP_200_OK, discovery_response) @APP.route("/<api_root>", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_api_root(api_root: str) -> Response: """ Defines TAXII API - Server Information: Get API Root Information section (4.2) `here <https://docs.oasis-open.org/cti/taxii/v2.1/cs01/taxii-v2.1-cs01.html#_Toc31107528>`__ Args: api_root (str): the base URL of the API Root Returns: api-root: An API Root Resource upon successful requests. """ try: api_root_response = SERVER.get_api_root() except Exception as e: error = f"Could not perform the API Root request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "API Root Request Error", "description": error}) return handle_response(HTTP_200_OK, api_root_response) @APP.route("/<api_root>/status/<status_id>", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_status(api_root: str, status_id: str) -> Response: # noqa: F841 """Status API call used to check status for adding object to the system. Our collections are read only. No option to add objects. Then All status requests ending with error. Returns: Error response. """ return handle_response( HTTP_404_NOT_FOUND, { "title": "Get Status not allowed.", "description": "Status ID is not found, or the client does not have access to the resource", }, ) @APP.route("/<api_root>/collections", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_collections(api_root: str) -> Response: """ Defines TAXII API - Collections: Get Collection section (5.1) `here for v.2 <https://docs.oasis-open.org/cti/taxii/v2.1/csprd01/taxii-v2.1-csprd01.html#_Toc532988049>`__ Args: api_root (str): the base URL of the API Root Returns: collections: A Collections Resource upon successful requests. Additional information `here <https://docs.oasis-open.org/cti/taxii/v2.1/csprd01/taxii-v2.1-csprd01.html#_Toc532988050>`__. """ try: collections_response = SERVER.get_collections() except Exception as e: error = f"Could not perform the collections request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "Collections Request Error", "description": error}) return handle_response(HTTP_200_OK, collections_response) @APP.route("/<api_root>/collections/<collection_id>", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_collection_by_id(api_root: str, collection_id: str) -> Response: """ Defines TAXII API - Collections: Get Collection section (5.2) `here for v.2.0 <http://docs.oasis-open.org/cti/taxii/v2.0/cs01/taxii-v2.0-cs01.html#_Toc496542736>`__ and `here for v.2.1 <https://docs.oasis-open.org/cti/taxii/v2.1/csprd01/taxii-v2.1-csprd01.html#_Toc532988051>`__ Args: collection_id: the is of the collection, can be obtained using `collection` request. api_root (str): the base URL of the API Root Returns: collections: A Collection Resource with given id upon successful requests. """ try: collection_response = SERVER.get_collection_by_id(collection_id) except Exception as e: error = f"Could not perform the collection request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "Collection Request Error", "description": error}) return handle_response(HTTP_200_OK, collection_response) # type: ignore[arg-type] @APP.route("/<api_root>/collections/<collection_id>/manifest", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_manifest(api_root: str, collection_id: str) -> Response: """ Defines TAXII API - Manifest Objects: Get Manifest section (5.3) `here <https://docs.oasis-open.org/cti/taxii/v2.1/os/taxii-v2.1-os.html#_Toc31107537>`__ Args: collection_id: collection id to query it objects api_root (str): the base URL of the API Root Returns: manifest: A Manifest Resource upon successful requests. Additional information `here <https://docs.oasis-open.org/cti/taxii/v2.1/os/taxii-v2.1-os.html#_Toc31107538>`__. """ try: created = datetime.now(timezone.utc) added_after, offset, limit, types = parse_manifest_and_object_args() manifest_response, date_added_first, date_added_last, content_range = SERVER.get_manifest( collection_id=collection_id, added_after=added_after, offset=offset, limit=limit, types=types, ) except NotImplementedError as e: return handle_response(HTTP_404_NOT_FOUND, {"title": "Manifest Request Error", "description": str(e)}) except RequestedRangeNotSatisfiable as e: return handle_response(HTTP_416_RANGE_NOT_SATISFIABLE, {"title": "Manifest Request Error", "description": f"{e}"}) except Exception as e: error = f"Could not perform the manifest request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "Manifest Request Error", "description": error}) query_time = (datetime.now(timezone.utc) - created).total_seconds() query_time_str = f"{query_time:.3f}" return handle_response( status_code=HTTP_200_OK, content=manifest_response, date_added_first=date_added_first, date_added_last=date_added_last, content_range=content_range, query_time=query_time_str, ) @APP.route("/<api_root>/collections/<collection_id>/objects", methods=["GET"], strict_slashes=False) @taxii_validate_request_headers @taxii_validate_url_param def taxii2_objects(api_root: str, collection_id: str) -> Response: """ Defines TAXII API - Collections Objects: Get Collection section (5.4) `here <https://docs.oasis-open.org/cti/taxii/v2.1/csprd01/taxii-v2.1-csprd01.html#_Toc532988055>`__ Args: collection_id: collection id to query it objects api_root (str): the base URL of the API Root Returns: envelope: A Envelope Resource upon successful requests. Additional information `here <https://docs.oasis-open.org/cti/taxii/v2.1/csprd01/taxii-v2.1-csprd01.html#_Toc532988038>`__. """ try: created = datetime.now(timezone.utc) added_after, offset, limit, types = parse_manifest_and_object_args() demisto.debug(f"T2S: called objects endpoint {collection_id=}") objects_response, date_added_first, date_added_last, content_range = SERVER.get_objects( collection_id=collection_id, added_after=added_after, offset=offset, limit=limit, types=types, ) except NotImplementedError as e: return handle_response(HTTP_404_NOT_FOUND, {"title": "Objects Request Error", "description": str(e)}) except RequestedRangeNotSatisfiable as e: return handle_response(HTTP_416_RANGE_NOT_SATISFIABLE, {"title": "Objects Request Error", "description": f"{e}"}) except Exception as e: error = f"Could not perform the objects request: {e!s}" handle_long_running_error(error) return handle_response(HTTP_400_BAD_REQUEST, {"title": "Objects Request Error", "description": error}) query_time = (datetime.now(timezone.utc) - created).total_seconds() query_time_str = f"{query_time:.3f}" return handle_response( status_code=HTTP_200_OK, content=objects_response, date_added_first=date_added_first, date_added_last=date_added_last, content_type=MEDIA_TYPE_STIX_V20 if SERVER.version == TAXII_VER_2_0 else MEDIA_TYPE_TAXII_V21, content_range=content_range, query_time=query_time_str, ) def test_module(params: dict) -> str: """ Integration test module. """ if not params.get("longRunningPort"): params["longRunningPort"] = "1111" run_long_running(params, is_test=True) return "ok" def edit_server_info(server_info: dict) -> dict: """Edits the server info dictionary if the server version >= 8.0.0 Args: server_info (dict): The server info """ if is_demisto_version_ge("8.0.0"): altered_api_roots = [] for api_root in server_info.get("api_roots", []): altered_api_roots.append(alter_url(api_root)) server_info["api_roots"] = altered_api_roots server_info["default"] = alter_url(server_info["default"]) return server_info def alter_url(url: str) -> str: """Alters the URL's netloc with the "ext-" prefix, and the path with the "/xsoar" path. Args: url (str): The URL to alter. """ parsed_url = urlparse(url) new_netloc = "ext-" + parsed_url.netloc new_path = "/xsoar" + parsed_url.path new_url = f"{parsed_url.scheme}://{new_netloc}{new_path}" return new_url def get_server_info_command(integration_context): server_info = integration_context.get("server_info", None) server_info = edit_server_info(server_info) metadata = ( "**In case the default/api_roots URL is incorrect, you can override it by setting" '"TAXII2 Service URL Address" field in the integration configuration**\n\n' ) hr = tableToMarkdown("Server Info", server_info, metadata=metadata) result = CommandResults(outputs=server_info, outputs_prefix="TAXIIServer.ServerInfo", readable_output=hr) return result def get_server_collections_command(integration_context): collections = integration_context.get("collections", None) markdown = tableToMarkdown("Collections", collections, headers=["id", "title", "query", "description"]) result = CommandResults( outputs=collections, outputs_prefix="TAXIIServer.Collection", outputs_key_field="id", readable_output=markdown ) return result def main(): # pragma: no cover """ Main """ global SERVER params = demisto.params() command = demisto.command() fields_to_present = create_fields_list(params.get("fields_filter", "")) types_for_indicator_sdo = argToList(params.get("provide_as_indicator")) collections = get_collections(params) version = params.get("version") credentials = params.get("credentials", {}) server_links = demisto.demistoUrls() server_link_parts: ParseResult = urlparse(server_links.get("server")) host_name = server_link_parts.hostname service_address = params.get("service_address") certificate = params.get("certificate", "") private_key = params.get("key", "") if (certificate and not private_key) or (private_key and not certificate): raise ValueError("When using HTTPS connection, both certificate and private key must be provided.") http_server = not (certificate and private_key) # False if (certificate and private_key) else True scheme = "https" if not http_server else "http" demisto.debug(f"Command being called is {command}") try: if command == "test-module": return_results(test_module(params)) try: port = int(params.get("longRunningPort", "")) except ValueError as e: raise ValueError(f"Invalid listen port - {e}") SERVER = TAXII2Server( scheme, str(host_name), port, collections, certificate, private_key, http_server, credentials, version, service_address, fields_to_present, types_for_indicator_sdo, ) if command == "long-running-execution": # save TAXII server info in the integration context to make it available later for other commands integration_context = get_integration_context(True) integration_context["collections"] = SERVER.get_collections().get("collections", []) integration_context["server_info"] = SERVER.get_discovery_service(instance_execute=True) set_integration_context(integration_context) run_long_running(params) elif command == "taxii-server-list-collections": integration_context = get_integration_context(True) return_results(get_server_collections_command(integration_context)) elif command == "taxii-server-info": integration_context = get_integration_context(True) return_results(get_server_info_command(integration_context)) elif command == "taxii-delete-search-after-cache": integration_context = get_integration_context(True) integration_context.pop(SEARCH_AFTER_KEY_NAME, None) set_integration_context(integration_context) return_results("search_after_cache context deleted") except Exception as e: err_msg = f"Error in {INTEGRATION_NAME} Integration [{e}]" return_error(err_msg) from NGINXApiModule import * # noqa: E402 from TAXII2ApiModule import * # noqa: E402 if __name__ in ["__main__", "__builtin__", "builtins"]: main()