diff --git a/website/web/templates/modules.html b/website/web/templates/modules.html new file mode 100644 index 00000000..c36be0f0 --- /dev/null +++ b/website/web/templates/modules.html @@ -0,0 +1,23 @@ +
+{% if vt %} +

Virus Total

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

URL
{{ url }}

+ {% 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%} +