Cortex-Analyzers/thehive-templates/DomainTools_WhoisLookupUnparsed_2_0/long.html
amr-cossi 4719e2652f Feature/domain tools more flavors (#321)
* 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
2018-12-20 15:03:34 +01:00

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>