2021-06-02 00:35:35 +02:00
|
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
|
|
|
|
<div>
|
2021-06-02 22:27:50 +02:00
|
|
|
<center>
|
|
|
|
<h1 class="display-4">MISP hits</h1>
|
|
|
|
<h6>Searching on URL, domain, IPs, and CNAMEs for all the nodes up to the rendered page.</h6>
|
|
|
|
<h6>Skips the entries in warnings lists enabled on your MISP instance.</h6>
|
|
|
|
</center>
|
2021-06-02 00:35:35 +02:00
|
|
|
{% if hits %}
|
2021-06-02 22:27:50 +02:00
|
|
|
<ul>
|
|
|
|
{% for event_id, values in hits.items() %}
|
|
|
|
<li><a href="{{misp_root_url}}/events/{{event_id}}">Event {{event_id}}</a>:
|
|
|
|
<ul>
|
|
|
|
{% for v in values|sort %}
|
|
|
|
<li>{{ v }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2021-06-02 00:35:35 +02:00
|
|
|
{% endfor %}
|
2021-06-02 22:27:50 +02:00
|
|
|
</ul>
|
2021-06-02 00:35:35 +02:00
|
|
|
{% else %}
|
|
|
|
No hits
|
|
|
|
{% endif %}
|