From 8b0021fcc0095ba22502500fb974799547ed473f Mon Sep 17 00:00:00 2001 From: Joost Agterhoek Date: Tue, 18 Feb 2025 22:32:02 +0100 Subject: [PATCH] currently used html files, results-detail is still quite empty --- templates/results-detail.html | 0 templates/results-overview-new.html | 81 +++++++++++++++++++++++++++++ templates/results.html | 4 +- 3 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 templates/results-detail.html create mode 100644 templates/results-overview-new.html diff --git a/templates/results-detail.html b/templates/results-detail.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/results-overview-new.html b/templates/results-overview-new.html new file mode 100644 index 0000000..8f09770 --- /dev/null +++ b/templates/results-overview-new.html @@ -0,0 +1,81 @@ + + + +
+
+ + + + + + + + + + + + {% for host in hosts %} + + + + + + + + + + + + + {% endfor %} + +
IP addressVirusTotalAbuseIPDBDomainRegistration countryRegistration dateEmail security
{{host.host}}Score: {{host.vt['score']}} / {{host.vt['total']}}
+ Last updated: {{host.vt['last_update']}}
+
Score: {{host.abuseipdb['score']}} + Last reported: {{host.abuseipdb['last_reported']}}{{host.domain}}{{host.metadata['registrar_country']}}{{host.metadata['creation_date']}}SPF: {{host.email_security[0]}}, DMARC: {{host.email_security[1]}}
+

+ VirusTotalVendor marked this host as malicious or suspicious: + {{host.vt['vendors']|join(', ')}} +
+ IP address is: {{host.abuseipdb['IP_address']}}
+ Is this Tor: {{host.abuseipdb['Tor']}}
+ Usage: {{host.abuseipdb['usage']}}
+ +

+
+
+
+ +{% for error in errors %} +{{error}} +{% endfor %} + +{% block scripts %} + + + +{% endblock %} diff --git a/templates/results.html b/templates/results.html index 2a0ef49..9a17271 100644 --- a/templates/results.html +++ b/templates/results.html @@ -6,7 +6,9 @@ {% include "forms.html" %} -{% include "results-overview.html" %} + {# {% include "results-overview.html" %} #} + + {% include "results-overview-new.html" %} {% include "results-detail.html" %}