forked from TheHive-Project/Cortex-Analyzers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlong.html
executable file
·42 lines (40 loc) · 1.69 KB
/
long.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!-- General error -->
<div class="panel panel-danger" ng-if="!success">
<div class="panel-heading">
<strong>Crowdstrike FalconX Sandbox report for {{(artifact.data || artifact.attachment.name) | fang}}</strong>
</div>
<div class="panel-body">
{{results.errorMessage}}
</div>
</div>
<!-- Success -->
<div class="panel panel-info" ng-if="success">
<div class="panel-heading">
<strong>CrowdStrike Falcon X Sandbox Report for {{(artifact.data || artifact.attachment.name) | fang}}</strong>
</div>
<div class="panel-body">
<a target="_blank" href="https://falcon.crowdstrike.com/intelligence/sandbox/report/{{content.resources[0].id}}/report-summary">Open the Crowdstrike Sandbox Report here</a>
</div>
<div class="panel-body" ng-repeat="sample in content.resources">
<div class="panel-body" ng-repeat="sandbox in sample.sandbox">
<div ng-repeat="(key, value) in sandbox">
<dl class="dl-horizontal">
<dt>{{key}}</dt>
<dd>
<div ng-switch on="key">
<div ng-switch-when="verdict">
<span class="label" ng-class="{'label-info':value === 'no specific threat',
'label-warning': value==='suspicious',
'label-danger': value==='malicious',
'label-success': value==='no verdict'}">
{{value}}
</span>
</div>
<div ng-switch-default>{{value}}</div>
</div>
</dd>
</dl>
</div>
</div>
</div>
</div>