Spaces:
Sleeping
Sleeping
Update osint_dark_template.html
Browse files- osint_dark_template.html +85 -51
osint_dark_template.html
CHANGED
|
@@ -1,104 +1,138 @@
|
|
| 1 |
|
| 2 |
<!DOCTYPE html>
|
| 3 |
-
<html lang="en"
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8">
|
| 6 |
<title>OSINT Intelligence Report</title>
|
| 7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 8 |
<style>
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
font-family: 'Segoe UI', sans-serif;
|
| 11 |
-
background-color:
|
| 12 |
-
color:
|
| 13 |
padding: 2rem;
|
|
|
|
| 14 |
line-height: 1.6;
|
| 15 |
-
}
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
padding: 1.5rem;
|
| 25 |
border-radius: 1rem;
|
| 26 |
-
box-shadow: 0 4px
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
display: inline-block;
|
| 34 |
-
background-color:
|
| 35 |
color: white;
|
|
|
|
| 36 |
padding: 0.75rem 1.5rem;
|
| 37 |
border-radius: 0.5rem;
|
| 38 |
-
text-decoration: none;
|
| 39 |
font-weight: bold;
|
| 40 |
transition: background-color 0.3s ease;
|
| 41 |
-
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
| 43 |
background-color: #059669;
|
| 44 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
</style>
|
| 46 |
</head>
|
| 47 |
<body>
|
| 48 |
-
<h1
|
| 49 |
|
| 50 |
-
<div class="
|
| 51 |
<h2>Summary</h2>
|
| 52 |
-
<p>{summary}</p>
|
| 53 |
</div>
|
| 54 |
|
| 55 |
-
<div class="
|
| 56 |
<h2>Top Topics</h2>
|
| 57 |
-
<p>{topics}</p>
|
| 58 |
</div>
|
| 59 |
|
| 60 |
-
<div class="
|
| 61 |
<h2>Notable Users</h2>
|
| 62 |
-
{users}
|
| 63 |
</div>
|
| 64 |
|
| 65 |
-
<div class="
|
| 66 |
<h2>Network Analysis</h2>
|
| 67 |
-
{clusters}
|
| 68 |
</div>
|
| 69 |
|
| 70 |
-
<div class="
|
| 71 |
<h2>Sentiment Overview</h2>
|
| 72 |
-
<p>Positive: {positive}%</p>
|
| 73 |
-
<p>Neutral: {neutral}%</p>
|
| 74 |
-
<p>Negative: {negative}%</p>
|
| 75 |
-
<
|
| 76 |
-
<img src="sentiment_pie_chart.png" alt="Sentiment Chart" width="500">
|
| 77 |
-
</div>
|
| 78 |
</div>
|
| 79 |
|
| 80 |
-
<div class="
|
| 81 |
<h2>Network Influence Graph</h2>
|
| 82 |
-
<
|
| 83 |
-
<img src="network_graph.png" alt="Network Graph" width="600">
|
| 84 |
-
</div>
|
| 85 |
</div>
|
| 86 |
|
| 87 |
-
<div class="
|
| 88 |
<h2>Risk Flags</h2>
|
| 89 |
<ul>
|
| 90 |
-
{flags}
|
| 91 |
</ul>
|
| 92 |
</div>
|
| 93 |
|
| 94 |
-
<div class="
|
| 95 |
<h2>Timestamp Range</h2>
|
| 96 |
-
<p>From: {start}</p>
|
| 97 |
-
<p>To: {end}</p>
|
| 98 |
</div>
|
| 99 |
|
| 100 |
-
<div class="text-
|
| 101 |
<a href="OSINT_Report.html" download class="download">⬇️ Download This Report</a>
|
| 102 |
</div>
|
|
|
|
|
|
|
| 103 |
</body>
|
| 104 |
</html>
|
|
|
|
|
|
| 1 |
|
| 2 |
<!DOCTYPE html>
|
| 3 |
+
<html lang="en">
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8">
|
| 6 |
<title>OSINT Intelligence Report</title>
|
| 7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 8 |
<style>
|
| 9 |
+
:root {{
|
| 10 |
+
--bg: #0f172a;
|
| 11 |
+
--card: #1e293b;
|
| 12 |
+
--text: #e2e8f0;
|
| 13 |
+
--accent: #60a5fa;
|
| 14 |
+
--success: #10b981;
|
| 15 |
+
}}
|
| 16 |
+
|
| 17 |
+
body {{
|
| 18 |
font-family: 'Segoe UI', sans-serif;
|
| 19 |
+
background-color: var(--bg);
|
| 20 |
+
color: var(--text);
|
| 21 |
padding: 2rem;
|
| 22 |
+
margin: 0;
|
| 23 |
line-height: 1.6;
|
| 24 |
+
}}
|
| 25 |
+
|
| 26 |
+
h1 {{
|
| 27 |
+
text-align: center;
|
| 28 |
+
font-size: 2.2rem;
|
| 29 |
+
color: var(--accent);
|
| 30 |
+
margin-bottom: 2rem;
|
| 31 |
+
}}
|
| 32 |
+
|
| 33 |
+
h2 {{
|
| 34 |
+
color: var(--accent);
|
| 35 |
+
margin-bottom: 1rem;
|
| 36 |
+
}}
|
| 37 |
+
|
| 38 |
+
.card {{
|
| 39 |
+
background-color: var(--card);
|
| 40 |
padding: 1.5rem;
|
| 41 |
border-radius: 1rem;
|
| 42 |
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
| 43 |
+
margin-bottom: 2rem;
|
| 44 |
+
}}
|
| 45 |
+
|
| 46 |
+
img {{
|
| 47 |
+
display: block;
|
| 48 |
+
margin: 1rem auto;
|
| 49 |
+
border-radius: 0.5rem;
|
| 50 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
| 51 |
+
}}
|
| 52 |
+
|
| 53 |
+
ul {{
|
| 54 |
+
padding-left: 1.5rem;
|
| 55 |
+
}}
|
| 56 |
+
|
| 57 |
+
a.download {{
|
| 58 |
display: inline-block;
|
| 59 |
+
background-color: var(--success);
|
| 60 |
color: white;
|
| 61 |
+
text-decoration: none;
|
| 62 |
padding: 0.75rem 1.5rem;
|
| 63 |
border-radius: 0.5rem;
|
|
|
|
| 64 |
font-weight: bold;
|
| 65 |
transition: background-color 0.3s ease;
|
| 66 |
+
margin-top: 1rem;
|
| 67 |
+
text-align: center;
|
| 68 |
+
}}
|
| 69 |
+
|
| 70 |
+
a.download:hover {{
|
| 71 |
background-color: #059669;
|
| 72 |
+
}}
|
| 73 |
+
|
| 74 |
+
.footer {{
|
| 75 |
+
text-align: center;
|
| 76 |
+
font-size: 0.9rem;
|
| 77 |
+
color: #94a3b8;
|
| 78 |
+
margin-top: 2rem;
|
| 79 |
+
}}
|
| 80 |
</style>
|
| 81 |
</head>
|
| 82 |
<body>
|
| 83 |
+
<h1>🕵️ OSINT Intelligence Report</h1>
|
| 84 |
|
| 85 |
+
<div class="card">
|
| 86 |
<h2>Summary</h2>
|
| 87 |
+
<p>{{summary}}</p>
|
| 88 |
</div>
|
| 89 |
|
| 90 |
+
<div class="card">
|
| 91 |
<h2>Top Topics</h2>
|
| 92 |
+
<p>{{topics}}</p>
|
| 93 |
</div>
|
| 94 |
|
| 95 |
+
<div class="card">
|
| 96 |
<h2>Notable Users</h2>
|
| 97 |
+
{{users}}
|
| 98 |
</div>
|
| 99 |
|
| 100 |
+
<div class="card">
|
| 101 |
<h2>Network Analysis</h2>
|
| 102 |
+
{{clusters}}
|
| 103 |
</div>
|
| 104 |
|
| 105 |
+
<div class="card">
|
| 106 |
<h2>Sentiment Overview</h2>
|
| 107 |
+
<p>Positive: {{positive}}%</p>
|
| 108 |
+
<p>Neutral: {{neutral}}%</p>
|
| 109 |
+
<p>Negative: {{negative}}%</p>
|
| 110 |
+
<img src="sentiment_pie_chart.png" alt="Sentiment Chart" width="500" />
|
|
|
|
|
|
|
| 111 |
</div>
|
| 112 |
|
| 113 |
+
<div class="card">
|
| 114 |
<h2>Network Influence Graph</h2>
|
| 115 |
+
<img src="network_graph.png" alt="Network Graph" width="600" />
|
|
|
|
|
|
|
| 116 |
</div>
|
| 117 |
|
| 118 |
+
<div class="card">
|
| 119 |
<h2>Risk Flags</h2>
|
| 120 |
<ul>
|
| 121 |
+
{{flags}}
|
| 122 |
</ul>
|
| 123 |
</div>
|
| 124 |
|
| 125 |
+
<div class="card">
|
| 126 |
<h2>Timestamp Range</h2>
|
| 127 |
+
<p>From: {{start}}</p>
|
| 128 |
+
<p>To: {{end}}</p>
|
| 129 |
</div>
|
| 130 |
|
| 131 |
+
<div class="card" style="text-align: center;">
|
| 132 |
<a href="OSINT_Report.html" download class="download">⬇️ Download This Report</a>
|
| 133 |
</div>
|
| 134 |
+
|
| 135 |
+
<div class="footer">© 2025 FakeDetect by Sebastian Friedrich Nestler – Responsible OSINT Intelligence</div>
|
| 136 |
</body>
|
| 137 |
</html>
|
| 138 |
+
|