-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from splunk-soar-connectors/next
Merging next to main for release 4.3.0
- Loading branch information
Showing
33 changed files
with
4,816 additions
and
645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{% extends 'widgets/widget_template.html' %} | ||
{% load custom_template %} | ||
|
||
{% block custom_title_prop %}{% if title_logo %}style="background-size: auto 60%; background-position: 50%; background-repeat: no-repeat; background-image: url('/app_resource/{{ title_logo }}');"{% endif %}{% endblock %} | ||
{% block title1 %}{{ title1 }}{% endblock %} | ||
{% block title2 %}{{ title2 }}{% endblock %} | ||
{% block custom_tools %} | ||
{% endblock %} | ||
|
||
{% block widget_content %} <!-- Main Start Block --> | ||
|
||
<!-- File: links_search_results.html | ||
Copyright (c) Recorded Future, Inc, 2019-2023 | ||
This unpublished material is proprietary to Recorded Future. All | ||
rights reserved. The methods and techniques described herein are | ||
considered trade secrets and/or confidential. Reproduction or | ||
distribution, in whole or in part, is forbidden except by express | ||
written permission of Recorded Future. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under | ||
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
--> | ||
|
||
<!-- | ||
Style elements are defined in a separate file, named below, | ||
and will be merged during compilation: | ||
recordedfuture_style.css --> | ||
|
||
<!-- needs to be modified from scratch --> | ||
|
||
<div class="rf-widget"> | ||
<!-- Main Div --> | ||
<h4> Collective insights data successfully submitted.</h4> | ||
</div> <!-- Main Div --> | ||
|
||
{% endblock %} <!-- Main Start Block --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{% extends 'widgets/widget_template.html' %} | ||
{% load custom_template %} | ||
|
||
{% block custom_title_prop %}{% if title_logo %}style="background-size: auto 60%; background-position: 50%; background-repeat: no-repeat; background-image: url('/app_resource/{{ title_logo }}');"{% endif %}{% endblock %} | ||
{% block title1 %}{{ title1 }}{% endblock %} | ||
{% block title2 %}{{ title2 }}{% endblock %} | ||
{% block custom_tools %} | ||
{% endblock %} | ||
|
||
{% block widget_content %} <!-- Main Start Block --> | ||
|
||
<!-- File: links_search_results.html | ||
Copyright (c) Recorded Future, Inc, 2019-2023 | ||
This unpublished material is proprietary to Recorded Future. All | ||
rights reserved. The methods and techniques described herein are | ||
considered trade secrets and/or confidential. Reproduction or | ||
distribution, in whole or in part, is forbidden except by express | ||
written permission of Recorded Future. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under | ||
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
--> | ||
|
||
<!-- | ||
Style elements are defined in a separate file, named below, | ||
and will be merged during compilation: | ||
recordedfuture_style.css --> | ||
|
||
<!-- needs to be modified from scratch --> | ||
|
||
<div class="rf-widget"> | ||
<!-- Main Div --> | ||
<h4>Detection Rule search results:</h4> | ||
<hr/> | ||
{% for result in results %} <!-- loop for each result --> | ||
<!------------------- For each Result ----------------------> | ||
{% for rule_data in result.data %} | ||
<div class="rf-full-width-box"> | ||
<span>Rule title: {{rule_data.title}}</span><br /><br /> | ||
<span>Rule description: {{rule_data.description}}</span><br/><br /> | ||
<span>Rule type: {{rule_data.type}}</span><br/><br /> | ||
</div> | ||
{% endfor %} | ||
{% endfor %} | ||
</div> <!-- Main Div --> | ||
|
||
{% endblock %} <!-- Main Start Block --> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.