diff --git a/templates/lookup.html b/templates/lookup.html new file mode 100644 index 0000000..0e5c958 --- /dev/null +++ b/templates/lookup.html @@ -0,0 +1,12 @@ +{% extends "layout.html" %} + + + +{% block content %} + +{% include "forms.html" %} + +{% include "empty_form.html" %} + +{% endblock %} + diff --git a/templates/results-overview.html b/templates/results-overview.html new file mode 100644 index 0000000..657991e --- /dev/null +++ b/templates/results-overview.html @@ -0,0 +1,73 @@ + + + +
IP address | +VirusTotal | +AbuseIPDB | +Domain | +Registration country | +Registration date | +Email security | + + + {% for host in hosts %} +
---|---|---|---|---|---|---|
{{host.host}} | +Score: {{host.vt['score']}} / {{host.vt['total']}} + Last updated: {{host.vt['last_update']}} |
+ Score: {{host.abuseipdb['data']['abuseConfidenceScore']}} + Last reported: {{host.abuseipdb['data']['lastReportedAt']}} | +{{host.domain}} | +{{host.metadata['registrar_country']}} | +{{host.metadata['creation_date']}} | +SPF: {{host.emailsec[0]}}, DMARC: {{host.emailsec[1]}} | +
+
+ Vendor marked this host as malicious or suspicious:
+ {% for vendor in host.vt['vendors'] %}
+ {{vendor}}
+ {% endfor %}
+ |
+