From 8b2f875436dc8f2445a4deb2870a498d7d63e462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 19 Feb 2024 16:24:17 +0100 Subject: [PATCH] fix: Missing templates --- website/web/templates/favicon_details.html | 35 ++++++++++++++++++ website/web/templates/favicons.html | 43 ++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 website/web/templates/favicon_details.html create mode 100644 website/web/templates/favicons.html diff --git a/website/web/templates/favicon_details.html b/website/web/templates/favicon_details.html new file mode 100644 index 00000000..3965b7c8 --- /dev/null +++ b/website/web/templates/favicon_details.html @@ -0,0 +1,35 @@ +{% extends "main.html" %} + +{% from 'bootstrap5/utils.html' import render_messages %} + +{% block title %}Favicon: {{ favicon_sha512 }}{% endblock %} + +{% block content %} +
+

{{ favicon_sha512 }}

+ +
+

The same favicon was seen in these captures:

+ +{% endblock %} diff --git a/website/web/templates/favicons.html b/website/web/templates/favicons.html new file mode 100644 index 00000000..3353d29f --- /dev/null +++ b/website/web/templates/favicons.html @@ -0,0 +1,43 @@ +{% extends "main.html" %} + +{% from 'bootstrap5/utils.html' import render_messages %} + +{% block title %}HTTP Headers Hashes lookup{% endblock %} + +{% block scripts %} +{{ super() }} + + +{% endblock %} + +{% block content %} +
+ + + + + + + + + + {% for favicon_sha512, freq, number_captures, b64_favicon in favicons %} + + + + + + {% endfor %} + +
FaviconFrequencyNumber of captures
+ + + + {{ freq }}{{ number_captures }}
+
+{% endblock %}