From 4e8fe1b26a3a9e553ffeac61e5c0134dbe488be3 Mon Sep 17 00:00:00 2001 From: Md Azam Date: Mon, 16 Jan 2023 16:16:11 -0400 Subject: [PATCH] Instructions for the usage of custom mappings (#1274) --- README.md | 4 + adapter-guide/custom_mappings.md | 94 +++++++++++++++++++ adapter-guide/develop-configuration-json.md | 4 +- .../alertflex/configuration/lang_en.json | 6 +- .../arcsight/configuration/lang_en.json | 14 +-- .../async_template/configuration/lang_en.json | 6 +- .../azure_sentinel/configuration/lang_en.json | 6 +- .../bigfix/configuration/lang_en.json | 6 +- .../carbonblack/configuration/lang_en.json | 6 +- .../cbcloud/configuration/lang_en.json | 8 +- .../crowdstrike/configuration/lang_en.json | 6 +- .../cybereason/configuration/lang_en.json | 4 +- .../darktrace/configuration/lang_en.json | 2 +- .../datadog/configuration/lang_en.json | 2 +- .../demo_template/configuration/lang_en.json | 6 +- .../elastic_ecs/configuration/lang_en.json | 6 +- .../error_test/configuration/lang_en.json | 2 +- .../gcp_chronicle/configuration/lang_en.json | 2 +- .../guardium/configuration/lang_en.json | 6 +- .../configuration/lang_en.json | 4 +- .../infoblox/configuration/lang_en.json | 6 +- stix_shifter_modules/lang_en.json | 2 +- .../msatp/configuration/lang_en.json | 6 +- .../mysql/configuration/lang_en.json | 4 +- .../paloalto/configuration/lang_en.json | 2 +- .../proofpoint/configuration/lang_en.json | 6 +- .../proxy/configuration/lang_en.json | 6 +- .../qradar/configuration/lang_en.json | 6 +- .../configuration/lang_en.json | 2 +- .../reaqta/configuration/lang_en.json | 6 +- .../reversinglabs/configuration/lang_en.json | 4 +- .../rhacs/configuration/lang_en.json | 4 +- .../secretserver/configuration/lang_en.json | 4 +- .../configuration/lang_en.json | 2 +- .../sentinelone/configuration/lang_en.json | 4 +- .../splunk/configuration/lang_en.json | 6 +- .../stix_bundle/configuration/lang_en.json | 2 +- .../configuration/lang_en.json | 6 +- .../configuration/lang_en.json | 6 +- 39 files changed, 188 insertions(+), 90 deletions(-) create mode 100644 adapter-guide/custom_mappings.md diff --git a/README.md b/README.md index 5621b3f04..0836bc80e 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,11 @@ response = translation.translate('', 'query', '{}', ' print(response) ``` +### Use of custom mappings +If a connector has been installed using pip, the process for editing the STIX mappings is different than if you have pulled-down the project. When working locally, you can edit the mapping files directly. See the [mapping files for the MySQL connector](stix_shifter_modules/mysql/stix_translation/json) as an example. Editing the mapping files won't work if the connector has been installed with pip; the setup script of the stix-shifter package includes the mapppings inside `config.json`. This allows stix-shifter to injest custom mappings as part of the connector's configuration. + +Refer to [Use of custom mappings](https://github.com/opencybersecurityalliance/stix-shifter/blob/develop/adapter-guide/custom_mappings.md) for more details on how to edit the mappings in the configuration. ## Contributing diff --git a/adapter-guide/custom_mappings.md b/adapter-guide/custom_mappings.md new file mode 100644 index 000000000..9590819f9 --- /dev/null +++ b/adapter-guide/custom_mappings.md @@ -0,0 +1,94 @@ +# Use of custom mappings + +Follow the below steps, if a user or threat hunter wants to use custom mapping after installing stix-shifter libraries: + + +1. Go to the standard python library installation location. The installation path usually looks like this ***lib/pythonX.Y/site-packages*** or go to https://docs.python.org/3/install/ for more details on the python library installation based on your system. + +2. Go to the ***stix_shifter_modules*** folder and find the connector name that is installed. + +3. Inside the connector folder, go to the ***config.json*** file found under the ***stix_shifter_modules/\/configuration/*** directory. + +4. There is a `mapping` object nested inside the `options` JSON object. This includes all the mappings from the `from_stix` and `to_stix` mapping files. Here's an example of the `config.json` file: + +``` +{ + "connection": { + "type": { + "displayName": "MySQL", + "group": "mysql", + "type": "connectorType" + }, + "options": { + "mapping": { + "type": "json", + "optional": true, + "previous": "connection.mapping", + "default": { + "from_stix_map": { + "ipv4-addr": { + "fields": { + "value": [ + "source_ipaddr", + "dest_ipaddr" + ] + } + }, + "file": { + "fields": { + "name": [ + "filename" + ] + } + } + }, + "operators": { + "ComparisonExpressionOperators.And": "AND", + "ComparisonExpressionOperators.Or": "OR" + }, + "to_stix_map": { + "source_ipaddr": [ + { + "key": "ipv4-addr.value", + "object": "src_ip" + }, + { + "key": "network-traffic.src_ref", + "object": "nt", + "references": "src_ip" + } + ], + "dest_ipaddr": [ + { + "key": "ipv4-addr.value", + "object": "dst_ip" + }, + { + "key": "network-traffic.dst_ref", + "object": "nt", + "references": "dst_ip" + } + ] + } + } + } + } + }, + "configuration": { + "auth": { + "type": "fields", + "username": { + "type": "password" + }, + "password": { + "type": "password" + } + } + } +} +``` + + +5. You can change, update or use the existing custom mappings fields and save the file. + +6. The stix-shifter CLI commands should automatically pick up your custom mappings in the next command execution. \ No newline at end of file diff --git a/adapter-guide/develop-configuration-json.md b/adapter-guide/develop-configuration-json.md index ff4854726..fd13e2eab 100644 --- a/adapter-guide/develop-configuration-json.md +++ b/adapter-guide/develop-configuration-json.md @@ -126,11 +126,11 @@ Below example json is the language translation file of the above QRadar config j "host": { "label": "Management IP address or Hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the host name or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/alertflex/configuration/lang_en.json b/stix_shifter_modules/alertflex/configuration/lang_en.json index 22cd7a5f3..23ab6d075 100644 --- a/stix_shifter_modules/alertflex/configuration/lang_en.json +++ b/stix_shifter_modules/alertflex/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the Alertflex controller" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Help", diff --git a/stix_shifter_modules/arcsight/configuration/lang_en.json b/stix_shifter_modules/arcsight/configuration/lang_en.json index e575884d3..45e361997 100644 --- a/stix_shifter_modules/arcsight/configuration/lang_en.json +++ b/stix_shifter_modules/arcsight/configuration/lang_en.json @@ -1,20 +1,20 @@ { "connection": { "host": { - "label": "ArcSight Logger IP address or Hostname", - "description": "Use IP address or Hostname of the ArcSight logger" + "label": "Management IP address or hostname", + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", "description": "More details on the datasource setting can be found in the specified link" }, "selfSignedCert": { - "label": "ArcSight logger Connection Certificate", - "description": "Use self-signed SSL certificate and CA content(root and intermediate) of datasource" + "label": "Connection Certificate", + "description": "Use self-signed SSL certificate and CA content (root and intermediate) of datasource" }, "sni": { "label": "Server Name Indicator", @@ -24,11 +24,11 @@ "configuration": { "auth": { "login": { - "label": "ArcSight Logger Username", + "label": "Username", "description": "ArcSight Logger user's login name with access to the search API" }, "password": { - "label": "ArcSight Logger Password", + "label": "Password", "description": "ArcSight Logger user's password with access to the search API" } } diff --git a/stix_shifter_modules/async_template/configuration/lang_en.json b/stix_shifter_modules/async_template/configuration/lang_en.json index fa014b803..0dbef54a7 100644 --- a/stix_shifter_modules/async_template/configuration/lang_en.json +++ b/stix_shifter_modules/async_template/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/azure_sentinel/configuration/lang_en.json b/stix_shifter_modules/azure_sentinel/configuration/lang_en.json index 423dc77e2..596934035 100644 --- a/stix_shifter_modules/azure_sentinel/configuration/lang_en.json +++ b/stix_shifter_modules/azure_sentinel/configuration/lang_en.json @@ -1,12 +1,12 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "label": "Management IP address or hostname", + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/bigfix/configuration/lang_en.json b/stix_shifter_modules/bigfix/configuration/lang_en.json index cb6834943..9b403d2eb 100644 --- a/stix_shifter_modules/bigfix/configuration/lang_en.json +++ b/stix_shifter_modules/bigfix/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/carbonblack/configuration/lang_en.json b/stix_shifter_modules/carbonblack/configuration/lang_en.json index faee6a471..8f46a767a 100644 --- a/stix_shifter_modules/carbonblack/configuration/lang_en.json +++ b/stix_shifter_modules/carbonblack/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/cbcloud/configuration/lang_en.json b/stix_shifter_modules/cbcloud/configuration/lang_en.json index fd6a23d39..963d827d5 100644 --- a/stix_shifter_modules/cbcloud/configuration/lang_en.json +++ b/stix_shifter_modules/cbcloud/configuration/lang_en.json @@ -1,17 +1,17 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the Carbon Black Cloud instance so that IBM Cloud Pak for Security can communicate with it." + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP." + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", - "description": "More details on the data source setting can be found in the specified link." + "description": "More details on the data source setting can be found in the specified link" } }, "configuration": { diff --git a/stix_shifter_modules/crowdstrike/configuration/lang_en.json b/stix_shifter_modules/crowdstrike/configuration/lang_en.json index f74c35c87..05390e792 100644 --- a/stix_shifter_modules/crowdstrike/configuration/lang_en.json +++ b/stix_shifter_modules/crowdstrike/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/cybereason/configuration/lang_en.json b/stix_shifter_modules/cybereason/configuration/lang_en.json index d66326680..55b81d5a1 100644 --- a/stix_shifter_modules/cybereason/configuration/lang_en.json +++ b/stix_shifter_modules/cybereason/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/darktrace/configuration/lang_en.json b/stix_shifter_modules/darktrace/configuration/lang_en.json index cb95009dc..361c2bf5d 100644 --- a/stix_shifter_modules/darktrace/configuration/lang_en.json +++ b/stix_shifter_modules/darktrace/configuration/lang_en.json @@ -1,7 +1,7 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "description": "Specify the IP address or hostname of the data source" }, "help": { diff --git a/stix_shifter_modules/datadog/configuration/lang_en.json b/stix_shifter_modules/datadog/configuration/lang_en.json index a90fd0079..dbd1354a2 100644 --- a/stix_shifter_modules/datadog/configuration/lang_en.json +++ b/stix_shifter_modules/datadog/configuration/lang_en.json @@ -3,7 +3,7 @@ "site_url": { "label": "Site URL", "placeholder": "https://app.datadoghq.com", - "description": "Specify the Site URL of the Datadog so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the Site URL of the datasource" }, "selfSignedCert": { "label": "Datadog Certificate", diff --git a/stix_shifter_modules/demo_template/configuration/lang_en.json b/stix_shifter_modules/demo_template/configuration/lang_en.json index f461827eb..0dbef54a7 100644 --- a/stix_shifter_modules/demo_template/configuration/lang_en.json +++ b/stix_shifter_modules/demo_template/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that the Application can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/elastic_ecs/configuration/lang_en.json b/stix_shifter_modules/elastic_ecs/configuration/lang_en.json index de01bde64..6187075f1 100644 --- a/stix_shifter_modules/elastic_ecs/configuration/lang_en.json +++ b/stix_shifter_modules/elastic_ecs/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/error_test/configuration/lang_en.json b/stix_shifter_modules/error_test/configuration/lang_en.json index 810b394b4..eb0affe9d 100644 --- a/stix_shifter_modules/error_test/configuration/lang_en.json +++ b/stix_shifter_modules/error_test/configuration/lang_en.json @@ -3,7 +3,7 @@ "url": { "label": "Full URL of a stix-bundle file", "placeholder": "https://url.to.stix_bundle.json.file", - "description": "Specify the URL of the STIX Bundle JSON file so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the URL of the STIX Bundle JSON file" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/gcp_chronicle/configuration/lang_en.json b/stix_shifter_modules/gcp_chronicle/configuration/lang_en.json index 71f2b9c67..253c6d882 100644 --- a/stix_shifter_modules/gcp_chronicle/configuration/lang_en.json +++ b/stix_shifter_modules/gcp_chronicle/configuration/lang_en.json @@ -1,7 +1,7 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "description": "Specify the IP address or hostname of the data source" }, "help": { diff --git a/stix_shifter_modules/guardium/configuration/lang_en.json b/stix_shifter_modules/guardium/configuration/lang_en.json index 34d9bda83..2d7c30fdd 100644 --- a/stix_shifter_modules/guardium/configuration/lang_en.json +++ b/stix_shifter_modules/guardium/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/ibm_security_verify/configuration/lang_en.json b/stix_shifter_modules/ibm_security_verify/configuration/lang_en.json index 9d1df265a..21be74222 100644 --- a/stix_shifter_modules/ibm_security_verify/configuration/lang_en.json +++ b/stix_shifter_modules/ibm_security_verify/configuration/lang_en.json @@ -1,9 +1,9 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.1", - "description": "Specify the IBM Security verify IP address or Hostname." + "description": "Specify the data source IP address or hostname." }, "port": { "label": "Host Port", diff --git a/stix_shifter_modules/infoblox/configuration/lang_en.json b/stix_shifter_modules/infoblox/configuration/lang_en.json index 4b4442f92..970d71710 100644 --- a/stix_shifter_modules/infoblox/configuration/lang_en.json +++ b/stix_shifter_modules/infoblox/configuration/lang_en.json @@ -1,12 +1,12 @@ { "connection": { "host": { - "label": "Infoblox IP address or Hostname", - "description": "Specify the Infoblox IP address or Hostname." + "label": "Infoblox IP address or hostname", + "description": "Specify the Infoblox IP address or hostname." }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/lang_en.json b/stix_shifter_modules/lang_en.json index ea17b1823..6e9af95b4 100644 --- a/stix_shifter_modules/lang_en.json +++ b/stix_shifter_modules/lang_en.json @@ -51,7 +51,7 @@ }, "concurrent": { "label": "Concurrent Search Limit", - "description": "The number of simultaneous connections that can be made between IBM Cloud Pak™ for Security and the data source. Valid input range is {{min}} to {{max}}." + "description": "The number of simultaneous connections that can be made to the data source. Valid input range is {{min}} to {{max}}." } } }, diff --git a/stix_shifter_modules/msatp/configuration/lang_en.json b/stix_shifter_modules/msatp/configuration/lang_en.json index a2d764a17..2dc33106d 100644 --- a/stix_shifter_modules/msatp/configuration/lang_en.json +++ b/stix_shifter_modules/msatp/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/mysql/configuration/lang_en.json b/stix_shifter_modules/mysql/configuration/lang_en.json index 3569a0a7c..7f11af1f4 100644 --- a/stix_shifter_modules/mysql/configuration/lang_en.json +++ b/stix_shifter_modules/mysql/configuration/lang_en.json @@ -1,9 +1,9 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", diff --git a/stix_shifter_modules/paloalto/configuration/lang_en.json b/stix_shifter_modules/paloalto/configuration/lang_en.json index a47affc0b..867f16ccc 100644 --- a/stix_shifter_modules/paloalto/configuration/lang_en.json +++ b/stix_shifter_modules/paloalto/configuration/lang_en.json @@ -1,7 +1,7 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "description": "Specify the IP address or hostname of the data source" }, "quota_threshold": { diff --git a/stix_shifter_modules/proofpoint/configuration/lang_en.json b/stix_shifter_modules/proofpoint/configuration/lang_en.json index 51e5541d5..7f4d13416 100755 --- a/stix_shifter_modules/proofpoint/configuration/lang_en.json +++ b/stix_shifter_modules/proofpoint/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/proxy/configuration/lang_en.json b/stix_shifter_modules/proxy/configuration/lang_en.json index 45eac7feb..2c7788250 100644 --- a/stix_shifter_modules/proxy/configuration/lang_en.json +++ b/stix_shifter_modules/proxy/configuration/lang_en.json @@ -6,13 +6,13 @@ }, "options": { "proxy_host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the proxy so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the proxy" }, "proxy_port": { "label": "Host Port", - "description": "Set the port number that is associated with the proxy Host name or IP" + "description": "Set the port number that is associated with the proxy hostname or IP address" }, "destination": { "label": "Destinations", diff --git a/stix_shifter_modules/qradar/configuration/lang_en.json b/stix_shifter_modules/qradar/configuration/lang_en.json index 3ca98623c..411829f06 100644 --- a/stix_shifter_modules/qradar/configuration/lang_en.json +++ b/stix_shifter_modules/qradar/configuration/lang_en.json @@ -1,14 +1,14 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the QRadar management IP address or Hostname." + "description": "Management IP address or hostname" }, "port": { "label": "Host Port", "placeholder": "443", - "description": "Specify the associated port number of the data source." + "description": "Specify the associated port number of the data source" }, "help": { "label": "Need additional help?" diff --git a/stix_shifter_modules/qradar_perf_test/configuration/lang_en.json b/stix_shifter_modules/qradar_perf_test/configuration/lang_en.json index 0d57f90cd..7f2473e19 100644 --- a/stix_shifter_modules/qradar_perf_test/configuration/lang_en.json +++ b/stix_shifter_modules/qradar_perf_test/configuration/lang_en.json @@ -3,7 +3,7 @@ "url": { "label": "Full URL of a raw response file", "placeholder": "https://url.to.raw_events.json.file", - "description": "Specify the URL of the raw response JSON file so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the URL of the raw response JSON file" }, "help": { "label": "Need additional help?" diff --git a/stix_shifter_modules/reaqta/configuration/lang_en.json b/stix_shifter_modules/reaqta/configuration/lang_en.json index 4693b379b..fd5f304a4 100644 --- a/stix_shifter_modules/reaqta/configuration/lang_en.json +++ b/stix_shifter_modules/reaqta/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/reversinglabs/configuration/lang_en.json b/stix_shifter_modules/reversinglabs/configuration/lang_en.json index c104c9963..dad30c8d1 100644 --- a/stix_shifter_modules/reversinglabs/configuration/lang_en.json +++ b/stix_shifter_modules/reversinglabs/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "https://mundy.threatqtie.com", "description": "Specify the OCP Cluster hostname or the XForce API host URL" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?" diff --git a/stix_shifter_modules/rhacs/configuration/lang_en.json b/stix_shifter_modules/rhacs/configuration/lang_en.json index 32cd234e1..fcf38dfa4 100644 --- a/stix_shifter_modules/rhacs/configuration/lang_en.json +++ b/stix_shifter_modules/rhacs/configuration/lang_en.json @@ -1,12 +1,12 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/secretserver/configuration/lang_en.json b/stix_shifter_modules/secretserver/configuration/lang_en.json index aefa53aea..4e6c205d1 100644 --- a/stix_shifter_modules/secretserver/configuration/lang_en.json +++ b/stix_shifter_modules/secretserver/configuration/lang_en.json @@ -1,9 +1,9 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", diff --git a/stix_shifter_modules/security_advisor/configuration/lang_en.json b/stix_shifter_modules/security_advisor/configuration/lang_en.json index a1de879da..dcb0aa385 100644 --- a/stix_shifter_modules/security_advisor/configuration/lang_en.json +++ b/stix_shifter_modules/security_advisor/configuration/lang_en.json @@ -2,7 +2,7 @@ "connection": { "host": { "label": "Host URL", - "description": "Specify theHost URL of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the host URL of the data source" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/sentinelone/configuration/lang_en.json b/stix_shifter_modules/sentinelone/configuration/lang_en.json index b00ad7f3c..cf550fcca 100644 --- a/stix_shifter_modules/sentinelone/configuration/lang_en.json +++ b/stix_shifter_modules/sentinelone/configuration/lang_en.json @@ -1,12 +1,12 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/splunk/configuration/lang_en.json b/stix_shifter_modules/splunk/configuration/lang_en.json index da6b1359c..e1bd494b4 100644 --- a/stix_shifter_modules/splunk/configuration/lang_en.json +++ b/stix_shifter_modules/splunk/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Host IP address or Hostname", + "label": "Host IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/stix_bundle/configuration/lang_en.json b/stix_shifter_modules/stix_bundle/configuration/lang_en.json index 810b394b4..eb0affe9d 100644 --- a/stix_shifter_modules/stix_bundle/configuration/lang_en.json +++ b/stix_shifter_modules/stix_bundle/configuration/lang_en.json @@ -3,7 +3,7 @@ "url": { "label": "Full URL of a stix-bundle file", "placeholder": "https://url.to.stix_bundle.json.file", - "description": "Specify the URL of the STIX Bundle JSON file so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the URL of the STIX Bundle JSON file" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/synchronous_template/configuration/lang_en.json b/stix_shifter_modules/synchronous_template/configuration/lang_en.json index 957ffe21b..2ddbba388 100644 --- a/stix_shifter_modules/synchronous_template/configuration/lang_en.json +++ b/stix_shifter_modules/synchronous_template/configuration/lang_en.json @@ -1,13 +1,13 @@ { "connection": { "host": { - "label": "Management IP address or Hostname", + "label": "Management IP address or hostname", "placeholder": "192.168.1.10", - "description": "Specify the IP address or hostname of the data source so that IBM Cloud Pak for Security can communicate with it" + "description": "Specify the IP address or hostname of the data source" }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?", diff --git a/stix_shifter_modules/trendmicro_vision_one/configuration/lang_en.json b/stix_shifter_modules/trendmicro_vision_one/configuration/lang_en.json index 0e91fb212..1c441491b 100644 --- a/stix_shifter_modules/trendmicro_vision_one/configuration/lang_en.json +++ b/stix_shifter_modules/trendmicro_vision_one/configuration/lang_en.json @@ -1,12 +1,12 @@ { "connection": { "host": { - "label": "Trend Micro Vision One IP address or Hostname", - "description": "Specify the Trend Micro Vision One IP address or Hostname." + "label": "Trend Micro Vision One IP address or hostname", + "description": "Specify the Trend Micro Vision One IP address or hostname." }, "port": { "label": "Host Port", - "description": "Set the port number that is associated with the Host name or IP" + "description": "Set the port number that is associated with the hostname or IP address" }, "help": { "label": "Need additional help?",