mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-06 09:05:19 +00:00
4719e2652f
* Add HostingHistory and ReverseIPWhois flavors Split Whois flavor in parsed and unparsed, and group IP and domain Add support for Reverse-Whois scope parameter * Remove flavor WhoisLookupIP * Update taxonomies and TheHive templates * Add taxonomies for new flavors
22 lines
584 B
HTML
22 lines
584 B
HTML
<div class="panel panel-danger" ng-if="!success">
|
|
<div class="panel-heading">
|
|
<strong>{{artifact.data | fang}}</strong>
|
|
</div>
|
|
<div class="panel-body">
|
|
{{content.errorMessage}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-info" ng-if="success">
|
|
<div class="panel-heading">
|
|
<strong>{{artifact.data | fang}}</strong>
|
|
</div>
|
|
<div class="panel-body">
|
|
<dl class="dl-horizontal">
|
|
<dt>Date of record</dt>
|
|
<dd>{{content.whois.date}}</dd>
|
|
</dl>
|
|
<pre>{{content.whois.record}}</pre>
|
|
</div>
|
|
</div>
|