From 5b9ece4480eebeef1a1fbef52a1532c700f6751f Mon Sep 17 00:00:00 2001 From: CyberRoute Date: Tue, 24 Oct 2023 20:44:53 +0200 Subject: [PATCH] ssl_info html template --- templates/ssl.page.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/ssl.page.html diff --git a/templates/ssl.page.html b/templates/ssl.page.html new file mode 100644 index 0000000..0386a68 --- /dev/null +++ b/templates/ssl.page.html @@ -0,0 +1,29 @@ +{{template "base" .}} + +{{define "content"}} +
+
+
+ {{if .SSLInfo}} + {{range .SSLInfo}} +
+
+
+
crt.sh ID: {{printf "%0.0f" .id}}
+
+
+

Common Name: {{.common_name}}

+

Matching Identities: {{.name_value}}

+

Issuer Name: {{.issuer_name}}

+
+
+
+ {{else}} +

No SSL information available for this domain.

+ {{end}} +
+
+
+{{end}} + +{{end}} \ No newline at end of file