forked from Mintozo/osint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
318 lines (313 loc) · 11 KB
/
index.html
File metadata and controls
318 lines (313 loc) · 11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSINT.Name - Advanced Intelligence Research Platform</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<style>
body {
font-family: 'Courier New', Courier, monospace;
background-color: #0d1117;
color: #c9d1d9;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background: linear-gradient(to bottom, #161b22, #0d1117);
padding: 60px 20px 40px;
text-align: center;
border-bottom: 1px solid #30363d;
}
header h1 {
font-size: 3.8em;
margin: 0;
color: #58a6ff;
text-shadow: 0 0 15px rgba(88, 166, 255, 0.4);
letter-spacing: 2px;
}
header .tagline {
font-size: 1.4em;
margin: 15px 0 0;
color: #8b949e;
font-weight: 300;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.intro {
text-align: center;
margin: 50px 0 70px;
}
.intro h2 {
font-size: 2.2em;
color: #e6edf3;
margin-bottom: 25px;
}
.intro p {
max-width: 800px;
margin: 0 auto 30px;
font-size: 1.1em;
color: #8b949e;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 25px;
margin-bottom: 80px;
}
.feature {
background-color: #161b22;
border: 1px solid #30363d;
border-radius: 10px;
padding: 30px 25px;
text-align: center;
transition: all 0.3s ease;
}
.feature:hover {
transform: translateY(-8px);
border-color: #58a6ff;
box-shadow: 0 10px 30px rgba(88, 166, 255, 0.15);
}
.feature i {
font-size: 3.2em;
color: #58a6ff;
margin-bottom: 20px;
}
.feature h3 {
font-size: 1.6em;
color: #e6edf3;
margin: 0 0 12px;
}
.feature p {
color: #8b949e;
font-size: 1.05em;
}
.tools-section {
margin: 80px 0;
}
.tools-section h2 {
text-align: center;
font-size: 2.4em;
color: #e6edf3;
margin-bottom: 40px;
}
.categories {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.category {
background-color: #161b22;
border: 1px solid #30363d;
border-radius: 10px;
padding: 20px;
transition: all 0.25s ease;
}
.category:hover {
border-color: #238636;
transform: scale(1.02);
}
.category h3 {
font-size: 1.4em;
color: #7ee787;
margin: 0 0 15px;
border-bottom: 1px solid #30363d;
padding-bottom: 10px;
}
.category ul {
list-style: none;
padding: 0;
margin: 0;
}
.category li {
margin: 10px 0;
}
.category a {
color: #8b949e;
text-decoration: none;
transition: color 0.2s;
}
.category a:hover {
color: #58a6ff;
}
.cta-section {
text-align: center;
padding: 80px 20px;
background: linear-gradient(to bottom, #0d1117, #161b22);
border-radius: 12px;
margin: 60px 0;
border: 1px solid #30363d;
}
.cta-section h2 {
font-size: 2.5em;
color: #e6edf3;
margin-bottom: 25px;
}
.cta-section p {
font-size: 1.2em;
color: #8b949e;
max-width: 700px;
margin: 0 auto 35px;
}
.btn {
display: inline-block;
background-color: #238636;
color: white;
padding: 16px 40px;
font-size: 1.2em;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: all 0.3s;
margin: 10px;
}
.btn:hover {
background-color: #2ea043;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(46, 160, 67, 0.3);
}
.btn.secondary {
background-color: transparent;
border: 2px solid #58a6ff;
color: #58a6ff;
}
.btn.secondary:hover {
background-color: rgba(88, 166, 255, 0.1);
}
footer {
background-color: #0d1117;
padding: 40px 20px;
text-align: center;
border-top: 1px solid #30363d;
color: #8b949e;
font-size: 0.95em;
}
footer a {
color: #58a6ff;
text-decoration: none;
margin: 0 12px;
}
footer a:hover {
text-decoration: underline;
}
.contact-emails {
margin-top: 25px;
font-size: 1.05em;
}
.contact-emails a {
color: #7ee787;
}
</style>
</head>
<body>
<header>
<h1>OSINT.Name</h1>
<div class="tagline">Next-Generation Open Source Intelligence Platform</div>
</header>
<div class="container">
<section class="intro">
<h2>Precision. Structure. Insight.</h2>
<p>OSINT.Name is an evolving research platform engineered for serious digital footprint analysis, identity verification workflows, and structured investigative operations.</p>
<p>Designed from the ground up for investigators, researchers, journalists, and analysts who demand clean, reliable, and powerful tooling in an increasingly noisy digital landscape.</p>
</section>
<section class="features">
<div class="feature">
<i class="fas fa-fingerprint"></i>
<h3>Digital Footprint Mapping</h3>
<p>Comprehensive cross-platform presence discovery, linkage analysis, and behavioral pattern extraction.</p>
</div>
<div class="feature">
<i class="fas fa-shield-check"></i>
<h3>Verification & Validation Engine</h3>
<p>Multi-layered source credibility assessment, document authentication, and disinformation detection workflows.</p>
</div>
<div class="feature">
<i class="fas fa-sitemap"></i>
<h3>Structured Investigation Framework</h3>
<p>Case management, entity graphing, timeline builders, and modular tool integration for repeatable, defensible workflows.</p>
</div>
</section>
<section class="tools-section">
<h2>Core Intelligence Categories</h2>
<div class="categories">
<div class="category">
<h3>Identity & Social</h3>
<ul>
<li><a href="#">Username & Handle Enumeration</a></li>
<li><a href="#">Cross-Platform Link Analysis</a></li>
<li><a href="#">Profile Deep Scraping</a></li>
<li><a href="#">Sockpuppet Detection</a></li>
</ul>
</div>
<div class="category">
<h3>Geospatial Intelligence</h3>
<ul>
<li><a href="#">IP → Physical Geolocation</a></li>
<li><a href="#">EXIF & Metadata Geotagging</a></li>
<li><a href="#">Satellite & Street-Level Verification</a></li>
<li><a href="#">Geofence Pattern Analysis</a></li>
</ul>
</div>
<div class="category">
<h3>Documents & Records</h3>
<ul>
<li><a href="#">Public & Leaked Record Search</a></li>
<li><a href="#">Wayback & Archive Mining</a></li>
<li><a href="#">Metadata Forensics</a></li>
<li><a href="#">OCR & Document Parsing</a></li>
</ul>
</div>
<div class="category">
<h3>Network & Infrastructure</h3>
<ul>
<li><a href="#">Domain & WHOIS Intelligence</a></li>
<li><a href="#">ASN & Hosting Mapping</a></li>
<li><a href="#">Passive DNS & Certificate Transparency</a></li>
<li><a href="#">Dark Web Surface Monitoring</a></li>
</ul>
</div>
<div class="category">
<h3>Media Verification</h3>
<ul>
<li><a href="#">Reverse Image & Video Search</a></li>
<li><a href="#">Deepfake & Manipulation Detection</a></li>
<li><a href="#">Content Provenance Tracing</a></li>
<li><a href="#">Audio Forensics Tools</a></li>
</ul>
</div>
<div class="category">
<h3>Advanced Analytics</h3>
<ul>
<li><a href="#">Relationship & Network Visualization</a></li>
<li><a href="#">Temporal Pattern Recognition</a></li>
<li><a href="#">Anomaly & Outlier Detection</a></li>
<li><a href="#">Custom Workflow Automation</a></li>
</ul>
</div>
</div>
</section>
<section class="cta-section">
<h2>Shape the Future of OSINT</h2>
<p>This platform is under active development — open-source, community-driven, and built for long-term evolution into a landmark intelligence resource.</p>
<a href="https://github.com/Mintozo/osint" class="btn">Explore GitHub Repository</a>
<a href="mailto:contact@osint.name" class="btn secondary">Get in Touch</a>
</section>
</div>
<footer>
<p>© 2026 OSINT.Name — All rights reserved.</p>
<p class="contact-emails">
General inquiries: <a href="mailto:contact@osint.name">contact@osint.name</a><br>
Administrative / Security: <a href="mailto:admin@osint.name">admin@osint.name</a>
</p>
<p>
<a href="#">Privacy & Data Policy</a> •
<a href="#">Terms of Use</a> •
<a href="#">Contributing Guidelines</a>
</p>
</footer>
</body>
</html>