Skip to content

Commit

Permalink
Merge pull request #9 from splunk-soar-connectors/next
Browse files Browse the repository at this point in the history
Merging next to main for release 4.2.0
  • Loading branch information
nestoor22 authored Mar 27, 2023
2 parents fb93491 + d036b4a commit 51d1591
Show file tree
Hide file tree
Showing 31 changed files with 7,338 additions and 1,909 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/generate-doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Generate Readme Doc
on:
workflow_dispatch:
push:
paths:
- '*.json'
- 'readme.html'
tags-ignore:
- '**'
branches-ignore:
- next
- main
jobs:
generate-doc:
runs-on: ubuntu-latest
steps:
- uses: 'phantomcyber/dev-cicd-tools/github-actions/generate-doc@main'
with:
GITHUB_TOKEN: ${{ secrets.SOAR_APPS_TOKEN }}
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: https://github.com/phantomcyber/dev-cicd-tools
rev: v1.13
rev: v1.16
hooks:
- id: org-hook
- id: package-app-dependencies
- repo: https://github.com/Yelp/detect-secrets
rev: v1.3.0
rev: v1.4.0
hooks:
- id: detect-secrets
args: ['--no-verify', '--exclude-files', '^recordedfuture.json$']
1,798 changes: 1,080 additions & 718 deletions README.md

Large diffs are not rendered by default.

120 changes: 0 additions & 120 deletions RELEASENOTES.md

This file was deleted.

76 changes: 74 additions & 2 deletions alert_lookup_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,82 @@
.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 ---------------------->
{% for result in results %}
Expand Down
76 changes: 74 additions & 2 deletions alert_rule_search_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,82 @@
.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 result in results %} <!-- loop for each result -->
Expand Down
Loading

0 comments on commit 51d1591

Please sign in to comment.