diff --git a/templates/results-overview-new.html b/templates/results-overview-new.html index 71e0e36..8b73068 100644 --- a/templates/results-overview-new.html +++ b/templates/results-overview-new.html @@ -2,10 +2,12 @@
+ {% if error in errors %}

You may have mistyped: {{errors|join(',')}}. Try again! + {% endif %}

diff --git a/templates/results-overview.html b/templates/results-overview.html index 657991e..2573ee9 100644 --- a/templates/results-overview.html +++ b/templates/results-overview.html @@ -1,10 +1,11 @@ +
-
- - +
+
+ @@ -12,12 +13,12 @@ - + {% for host in hosts %} - @@ -30,13 +31,11 @@ {% endfor %} @@ -45,29 +44,44 @@ +{# {% include "test-table.html" %} #} + + {% block scripts %} +{#{% for host in hosts %}#} +{#whoopsie = JSON.parse({{ host.vt_json.text | tojson }}) {% endfor %}#} +{#{{whoopsie}}#} + {% endblock %}
IP address VirusTotal AbuseIPDBRegistration country Registration date Email security
{{host.host}}Score: {{host.vt['score']}} / {{host.vt['total']}}
+
Score: {{host.vt['vendors_malicious']}} / {{host.vt['vendors_total']}}
Last updated: {{host.vt['last_update']}}
Score: {{host.abuseipdb['data']['abuseConfidenceScore']}} Last reported: {{host.abuseipdb['data']['lastReportedAt']}}

Vendor marked this host as malicious or suspicious: - {% for vendor in host.vt['vendors'] %} - {{vendor}} + {% for key, value in host.vt['all_vendors'].items() if value['category'] in ['malicious', 'suspicious'] %} + {{key}} {% endfor %} -
- Some relevant data from AbuseIPDB: - {{ host.abuseipdb }}

+