Skip to content

Commit

Permalink
Merge pull request #20 from splunk-soar-connectors/next
Browse files Browse the repository at this point in the history
Merging next to main for release 4.3.2
  • Loading branch information
nestoor22 authored Apr 18, 2024
2 parents 0247902 + ce29d12 commit ff167f6
Show file tree
Hide file tree
Showing 44 changed files with 2,056 additions and 711 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
7 changes: 1 addition & 6 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Splunk SOAR Recorded Future
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024

Third-party Software Attributions:

Expand All @@ -14,8 +14,3 @@ Library: pudb
Version: 2019.2
License: MIT
Copyright 2009 Andreas Kloeckner and contributors

Library: requests
Version: 2.25.0
License: Apache 2.0
Kenneth Reitz
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
# Recorded Future For Splunk SOAR

Publisher: Recorded Future, Inc
Connector Version: 4.3.1
Connector Version: 4.3.2
Product Vendor: Recorded Future, Inc
Product Name: Recorded Future App for Phantom
Product Version Supported (regex): ".\*"
Minimum Product Version: 5.5.0
Minimum Product Version: 6.1.1

This app implements investigative actions to perform lookups for quick reputation information, contextual threat intelligence and external threat alerts

[comment]: # " File: README.md"
[comment]: # ""
[comment]: # "Copyright (c) Recorded Future, Inc, 2019-2023"
[comment]: # "Copyright (c) Recorded Future, Inc, 2019-2024"
[comment]: # ""
[comment]: # "This unpublished material is proprietary to Recorded Future. All"
[comment]: # "rights reserved. The methods and techniques described herein are"
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --
# File: __init__.py
#
# Copyright (c) Recorded Future, Inc, 2019-2023
# Copyright (c) Recorded Future, Inc, 2019-2024
#
# This unpublished material is proprietary to Recorded Future. All
# rights reserved. The methods and techniques described herein are
Expand Down
2 changes: 1 addition & 1 deletion alert_data_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_data_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
160 changes: 159 additions & 1 deletion alert_lookup_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_search_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand All @@ -35,6 +35,164 @@
Style elements are defined in a separate file, named below,
and will be merged during compilation:
recordedfuture_style.css -->
<style>

/* || RECORDED FUTURE COLOR */

:root{
--RecordedFutureBlue: #2673B3;
--CriticalityHigh: #cf0a2c;
--CriticalityModerate: #FFCE00;
--CriticalityLow: #e1e6eb;
}

a:hover {
text-decoration: underline;
}

.rf-widget {
overflow: auto;
width: 100%;
height: 100%;
padding-left:10px;
padding-right:10px;
}

.rf-box {
width: 750px;
padding: 5px;
margin: 0 5px;
font-size: 12px;
}

.highlighted {
font-weight: 700;
}

.non-highlighted {
font-size: x-small;
}

.rf-box th {
text-align: left;
}

.rf-table {
width: 98%;
border-collapse: collapse;
margin: 5px 5px 5px 0;
padding: 10px;
font-size: 12px;
}

td.rf-criticality-level-3, td.rf-criticality-level-4,
td.rf-criticality-level-5 {
background: var(--CriticalityHigh);
width: 0 !important;
padding: 0 2px 0 3px !important;
}
td.rf-criticality-level-2 {
background: var(--CriticalityModerate);
width: 0 !important;
padding: 0 2px 0 3px !important;
}
td.rf-criticality-level-1 {
background: var(--CriticalityLow);
width: 0 !important;
padding: 0 2px 0 3px !important;
}

.rf-table td {
vertical-align: text-top;
padding: 10px;
}

td.rf-timestamp {
min-width: 13ex !important;
}

.rf-hover-info {
font-weight: normal;
}

.rf-hover-info:hover {
font-weight: bold;
}
.rf-full-width-box {
width: 100%;
border-bottom: 1px solid #3c444d;
padding: 5px;
margin: 0 5px;
font-size: 12px;
}
.rf-circle {
height: 10px;
width: 10px;
border-radius: 50%;
}
.rf-alert-panel {
width: 96%;
margin-left: 2%;
border: 1px solid #3c444d;
padding: 10px;
}
.rf-chip-box {
border-radius: 10px;
background-color: darkred;
padding: 3px;
text-align: center;
}
.rf-priority-level-High {
background: var(--CriticalityHigh);
}
.rf-priority-level-Moderate {
background: var(--CriticalityModerate);
}
.rf-priority-level-Informational {
background: var(--CriticalityLow);
}
.rf-criticality-level-High {
background: var(--CriticalityHigh);
}
.rf-criticality-level-Medium {
background: var(--CriticalityModerate);
}
.rf-criticality-level-Low {
background: var(--CriticalityLow);
}
.rf-playbook-alert-screenshot {
margin-bottom: 20px;
width: 100%;
height: 720px;
}
.rf-playbook-alert-data-row {
display: flex;
align-items: center;
margin: 0;
gap: 20px;
margin-bottom: 5px;
}
.rf-playbook-alert-dns-data-row {
display: flex;
align-items: center;
margin: 0;
gap: 5px;
}
.rf-playbook-alert-panel-title {
margin-left: 2%;
}
.rf-playbook-alert-whois-data-row {
display: flex;
align-items: center;
gap: 20px;
}
.rf-playbook-alert-data-row-title {
width: 10%;
}
.rf-playbook-alert-evidence-data-row-title {
width: 20%;
}
</style>

<div class="rf-widget"> <!-- Main Div -->
<!------------------- For each Result ---------------------->
Expand Down
2 changes: 1 addition & 1 deletion alert_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
2 changes: 1 addition & 1 deletion alert_rule_search_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_rule_search_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
2 changes: 1 addition & 1 deletion alert_rules_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_rules_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
2 changes: 1 addition & 1 deletion alert_search_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_search_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
2 changes: 1 addition & 1 deletion alert_update_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- File: alert_lookup_results.html
Copyright (c) Recorded Future, Inc, 2019-2023
Copyright (c) Recorded Future, Inc, 2019-2024
This unpublished material is proprietary to Recorded Future. All
rights reserved. The methods and techniques described herein are
Expand Down
Loading

0 comments on commit ff167f6

Please sign in to comment.