Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging next to main for release 2.16.2 #48

Merged
merged 6 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading