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 @@
You may have mistyped: {{errors|join(',')}}. Try again! + {% endif %}
IP address | VirusTotal | AbuseIPDB | @@ -12,12 +13,12 @@Registration 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']}} | @@ -30,13 +31,11 @@
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 %}
- |