Skip to content

Commit

Permalink
Merge pull request #48 from splunk-soar-connectors/next
Browse files Browse the repository at this point in the history
Merging next to main for release 2.16.2
  • Loading branch information
mposluszny-splunk authored Jun 28, 2024
2 parents 1a3fe4a + 22cdaba commit 8054a67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# Splunk

Publisher: Splunk
Connector Version: 2.16.1
Connector Version: 2.16.2
Product Vendor: Splunk Inc.
Product Name: Splunk Enterprise
Product Version Supported (regex): ".\*"
Minimum Product Version: 6.1.1
Minimum Product Version: 6.2.1

This app integrates with Splunk to update data on the device, in addition to investigate and ingestion actions

Expand Down
1 change: 1 addition & 0 deletions release_notes/2.16.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fixed Django template, `ifnotequal` tag was deprecated.
4 changes: 2 additions & 2 deletions splunk.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
],
"type": "siem",
"main_module": "splunk_connector.py",
"app_version": "2.16.1",
"app_version": "2.16.2",
"utctime_updated": "2022-09-08T08:47:45.000000Z",
"package_name": "phantom_splunk",
"product_name": "Splunk Enterprise",
"product_vendor": "Splunk Inc.",
"product_version_regex": ".*",
"min_phantom_version": "6.1.1",
"min_phantom_version": "6.2.1",
"fips_compliant": true,
"python_version": "3",
"latest_tested_versions": [
Expand Down
4 changes: 2 additions & 2 deletions splunk_run_query.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h4 class="wf-h4-style">Results</h4>
<tr>
{% for header in result.headers %}
{% for k, v in item.items %}
{% ifequal header k %}
{% if header == k %}
{% if k == 'splunk_server' or k == 'host' %}
<td>
<a href="javascript:;"
Expand All @@ -173,7 +173,7 @@ <h4 class="wf-h4-style">Results</h4>
{% else %}
<td>{{ v }}</td>
{% endif %}
{% endifequal %}
{% endif %}
{% endfor %}
{% endfor %}
</tr>
Expand Down

0 comments on commit 8054a67

Please sign in to comment.