{% from "macros.html" import shorten_string %}
{% if urlscan and urlscan.get('permaurl') %}

urlscan.io

A scan was triggered for this capture, click to view it on urlscan.io.

{% if urlscan['malicious']%}

It is considered malicious.

{% endif%} {% if urlscan['tags'] %}

It is tagged as {{ ','.join(urlscan['tags']) }}.

{% endif%}
{% endif%} {% if vt %}

Virus Total

{% for url, entries in vt.items() %}

URL {{ shorten_string(url, 50, with_title=True) }}

{% if entries['malicious'] %}

Detected as malicious by the following vendors

{% for e in entries['malicious'] %}
{{ e[0] }}
{{ e[1] }}
{% endfor %}
{% else %}

No vendors consider this URL as malicious.

{% endif%}
Full report on VirusTotal
{% endfor %} {% endif%} {% if pi%}

Phishing Initiative

{% for url, tag in pi.items() %}

URL {{ shorten_string(url, 50, with_title=True) }}

This URL is tagged as {{ tag }} on Phishing Initiative
{% endfor %} {% endif%}