-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport_template.html
More file actions
50 lines (50 loc) · 1.48 KB
/
report_template.html
File metadata and controls
50 lines (50 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TLS Handshake Analysis Report</title>
<style>
body { font-family: Arial, sans-serif; background: #f5f5f5; padding: 20px; }
h1, h2 { color: #333; }
pre { white-space: pre-wrap; background: #fff; padding: 10px; border-radius: 5px; }
.panel { background: #fff; padding: 15px; margin-bottom: 20px; box-shadow: 0 0 5px #ccc; border-radius: 5px; }
hr { border: none; border-top: 1px solid #ccc; margin: 40px 0; }
</style>
</head>
<body>
<h1>TLS Handshake Analysis Report</h1>
{% for result in bulk_results %}
<div class="panel">
<h2>Connection Summary - {{ result.Connection.Domain }}</h2>
<pre>{{ result.Connection | tojson(indent=4) }}</pre>
</div>
{% if result.SSLDetails %}
<div class="panel">
<h2>SSL Connection Details</h2>
<pre>{{ result.SSLDetails | tojson(indent=4) }}</pre>
</div>
{% endif %}
<div class="panel">
<h2>Certificates</h2>
<pre>{{ result.Certificates | tojson(indent=4) }}</pre>
</div>
<div class="panel">
<h2>Handshake Details</h2>
<pre>{{ result.Handshake | tojson(indent=4) }}</pre>
</div>
<div class="panel">
<h2>OCSP</h2>
<pre>{{ result.OCSP | tojson(indent=4) }}</pre>
</div>
<div class="panel">
<h2>Security Alerts</h2>
<pre>{{ result.Security | tojson(indent=4) }}</pre>
</div>
<div class="panel">
<h2>Trust Status</h2>
<pre>{{ result.TrustStatus }}</pre>
</div>
<hr>
{% endfor %}
</body>
</html>