-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
320508e
commit d622fa0
Showing
2 changed files
with
151 additions
and
3 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
148 changes: 148 additions & 0 deletions
148
thehive-templates/CuckooSandbox_Url_Analysis_1_0/long.html
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,148 @@ | ||
<div class="report-CuckooSandbox" ng-if="success"> | ||
<style> | ||
.report-CuckooSandbox dl { | ||
margin-bottom: 2px; | ||
} | ||
</style> | ||
|
||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<strong>General Information</strong> | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<h4>File information</h4> | ||
<br> | ||
<dl class="dl-horizontal"> | ||
<dt>FileType</dt> | ||
<dd>{{content.file_type}}</dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Malfamily</dt> | ||
<dd>{{content.malfamily}}</dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Malscore</dt> | ||
<dd> | ||
<span ng-class="{'label-info': content.malscore<=2, 'label-warning': content.malscore>2 && content.malscore<=6.5, 'label-danger': content.malscore >6.5}"> | ||
{{content.malscore}} | ||
</span> | ||
</dd> | ||
</dl> | ||
</div> | ||
</div> | ||
|
||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<strong>Analysis</strong> | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<div ng-if="content.signatures"> | ||
<h4>Signatures</h4> | ||
<br> | ||
<dl class="dl-horizontal" ng-repeat="signature in content.signatures track by $index"> | ||
<dd>{{ signature }}<dd> | ||
</dl> | ||
</div> | ||
<div ng-if="!content.signatures"> | ||
No suspicious signature reported | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<strong>Analysis</strong> | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<div ng-if="content.hosts"> | ||
<h4>Remote connections</h4> | ||
<br> | ||
<div> | ||
<table class="table table-hover"> | ||
<tr> | ||
<th>Domain</th> | ||
<th>IP</th> | ||
<th>Location</th> | ||
</tr> | ||
<tr ng-repeat="host in content.hosts track by $index"> | ||
<td>{{host[1]}}</td> | ||
<td>{{host[0]}}</td> | ||
<td>{{host[2]}}</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
|
||
<br/> | ||
<hr> | ||
<br/> | ||
|
||
<div ng-if="content.uri"> | ||
<h4>URI</h4> | ||
<br> | ||
<dl class="dl-horizontal" ng-repeat="uri in content.uri track by $index"> | ||
<dd>{{ uri }}<dd> | ||
</dl> | ||
</div> | ||
<div ng-if="!content.uri"> | ||
No suspicious uri reported | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<strong>Yara</strong> | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<div ng-if="content.yara"> | ||
<h4>Yara</h4> | ||
<br> | ||
<dl class="dl-horizontal" ng-repeat="yara in content.yara track by $index"> | ||
<dd>{{ yara }}<dd> | ||
</dl> | ||
</div> | ||
<div ng-if="!content.yara"> | ||
No suspicious activity reported | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<strong>Suricata</strong> | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<div ng-if="content.suricata_alerts"> | ||
<h4>Suricata Alerts</h4> | ||
<br> | ||
<dl class="dl-horizontal" ng-repeat="suri in content.suricata_alerts track by $index"> | ||
<dd>{{ suri }}<dd> | ||
</dl> | ||
</div> | ||
<div ng-if="!content.suri"> | ||
No suspicious suricata alerts reported | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<!-- General error --> | ||
<div class="panel panel-danger" ng-if="!success"> | ||
<div class="panel-heading"> | ||
<strong>{{(artifact.data || artifact.attachment.name) | fang}}</strong> | ||
</div> | ||
<div class="panel-body"> | ||
{{content.errorMessage}} | ||
</div> | ||
</div> |