-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
490 lines (465 loc) · 19.7 KB
/
index.html
File metadata and controls
490 lines (465 loc) · 19.7 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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Spin Web - OSINT Mini Toolkit</title>
<meta name="description" content="Spin Web - A privacy-first OSINT investigation toolkit. Analyze phones, emails, usernames, and domains. 100% client-side.">
<meta name="theme-color" content="#7b1feb">
<meta property="og:title" content="Spin Web - OSINT Mini Toolkit">
<meta property="og:description" content="Privacy-first OSINT investigation toolkit. All analysis runs locally in your browser.">
<meta property="og:type" content="website">
<!-- PWA / iOS Home Screen -->
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Spin Web">
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" href="icon.svg" type="image/svg+xml">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Loading Screen -->
<div id="loading-screen" class="loading-screen">
<div class="loading-content">
<div class="loading-logo">S</div>
<div class="loading-text">INITIALIZING SPIN WEB</div>
<div class="loading-bar"><div class="loading-bar-fill"></div></div>
<div class="loading-status" id="loading-status">Booting surveillance systems...</div>
</div>
</div>
<!-- Scanline overlay -->
<div class="scanline-overlay"></div>
<!-- Header -->
<header class="header">
<div class="header-left">
<div class="logo" title="Spin Web OSINT Toolkit">S</div>
<div class="header-title">
<h1>Spin Web <span class="subtitle">OSINT Mini Toolkit</span></h1>
<div class="header-tagline" id="header-tagline">Investigating the internet, one query at a time...</div>
</div>
</div>
<div class="header-right">
<span class="badge version-badge">v12.0.3 · Jessica Jones</span>
<span class="badge client-badge">100% Client-Side</span>
<span class="badge case-badge" id="case-number">CASE #------</span>
<a href="https://github.com/thumpersecure/Spin" target="_blank" rel="noopener" class="btn-desktop">Desktop App</a>
</div>
</header>
<!-- Navigation -->
<nav class="nav" id="main-nav">
<button class="nav-tab active" data-panel="dashboard" onclick="switchPanel('dashboard')">
<span class="nav-icon">◆</span> Dashboard
</button>
<button class="nav-tab" data-panel="phone-tool" onclick="switchPanel('phone-tool')">
<span class="nav-icon">☎</span> Phone Intel
</button>
<button class="nav-tab" data-panel="email-tool" onclick="switchPanel('email-tool')">
<span class="nav-icon">✉</span> Email Analysis
</button>
<button class="nav-tab" data-panel="username-tool" onclick="switchPanel('username-tool')">
<span class="nav-icon">☃</span> Username Recon
</button>
<button class="nav-tab" data-panel="domain-tool" onclick="switchPanel('domain-tool')">
<span class="nav-icon">☁</span> Domain Recon
</button>
<button class="nav-tab" data-panel="extractor" onclick="switchPanel('extractor')">
<span class="nav-icon">✒</span> Entity Extractor
</button>
<button class="nav-tab" data-panel="hivemind" onclick="switchPanel('hivemind')">
<span class="nav-icon">★</span> Hivemind
</button>
<button class="nav-tab" data-panel="bookmarks" onclick="switchPanel('bookmarks')">
<span class="nav-icon">☰</span> OSINT Bookmarks
</button>
</nav>
<!-- Main Content -->
<main class="main">
<!-- Dashboard -->
<section id="dashboard" class="panel active">
<!-- Stats Row -->
<div class="stats-grid">
<div class="stat-card purple">
<div class="stat-value" id="entity-count">0</div>
<div class="stat-label">Entities Collected</div>
</div>
<div class="stat-card green">
<div class="stat-value" id="entity-types-count">0</div>
<div class="stat-label">Entity Types</div>
</div>
<div class="stat-card blue">
<div class="stat-value">8</div>
<div class="stat-label">OSINT Categories</div>
</div>
<div class="stat-card orange">
<div class="stat-value">50+</div>
<div class="stat-label">Bookmarked Tools</div>
</div>
</div>
<!-- Welcome Card -->
<div class="card welcome-card">
<div class="card-header">
<div class="card-title">
<div class="card-icon purple">S</div>
Welcome to Spin Web
</div>
<div class="classified-stamp" id="classified-stamp">DECLASSIFIED</div>
</div>
<p class="welcome-text">
<strong class="bright">Spin</strong> is a privacy-first OSINT investigation toolkit.
This is the <strong class="purple">web mini version</strong> — a lightweight,
client-side toolkit that runs entirely in your browser. No data leaves your machine.
All analysis happens locally using JavaScript.
</p>
<p class="welcome-text" style="margin-top:0.75rem">
For the full experience — multi-identity browsing, AI agents, real-time entity sync,
investigation timelines, and advanced privacy controls —
<a href="https://github.com/thumpersecure/Spin" target="_blank" rel="noopener" class="link-blue">grab the desktop app</a>.
</p>
</div>
<!-- Joke of the Investigation -->
<div class="card joke-card">
<div class="card-header">
<div class="card-title">
<div class="card-icon green">?</div>
<span>Joke of the Investigation</span>
</div>
<button class="btn btn-sm btn-secondary" onclick="nextJoke()" title="Next joke">Next Case</button>
</div>
<div class="joke-display">
<p class="joke-text" id="joke-text">Loading classified humor...</p>
<p class="joke-punchline" id="joke-punchline"></p>
</div>
</div>
<!-- OSINT Tip Ticker -->
<div class="tip-ticker">
<span class="tip-label">INTEL BRIEF</span>
<div class="tip-scroll" id="tip-ticker">Loading field intelligence...</div>
</div>
<!-- Quick Tools -->
<h3 class="section-title">Quick Tools</h3>
<div class="tools-grid">
<div class="tool-card" onclick="switchPanel('phone-tool')">
<div class="tool-icon green-glow">☎</div>
<h3>Phone Intelligence</h3>
<p>Analyze phone numbers — country detection, carrier info, format conversion, and search links.</p>
</div>
<div class="tool-card" onclick="switchPanel('email-tool')">
<div class="tool-icon blue-glow">✉</div>
<h3>Email Analysis</h3>
<p>Analyze email addresses — provider detection, disposable check, pattern analysis.</p>
</div>
<div class="tool-card" onclick="switchPanel('username-tool')">
<div class="tool-icon purple-glow">☃</div>
<h3>Username Recon</h3>
<p>Search usernames across 16+ platforms — social media, code, and gaming.</p>
</div>
<div class="tool-card" onclick="switchPanel('domain-tool')">
<div class="tool-icon orange-glow">☁</div>
<h3>Domain Recon</h3>
<p>Domain intelligence — WHOIS, DNS, SSL certs, historical data, and more.</p>
</div>
<div class="tool-card" onclick="switchPanel('extractor')">
<div class="tool-icon red-glow">✒</div>
<h3>Entity Extractor</h3>
<p>Paste any text to automatically extract emails, phones, IPs, domains, crypto addresses.</p>
</div>
<div class="tool-card" onclick="switchPanel('hivemind')">
<div class="tool-icon green-glow">★</div>
<h3>Hivemind</h3>
<p>View, search, filter, and export all collected entities from your investigations.</p>
</div>
</div>
<!-- Investigation Stats -->
<div class="card" style="margin-top:1.5rem">
<div class="card-header">
<div class="card-title">
<div class="card-icon blue">i</div>
Investigation Status
</div>
</div>
<div class="investigation-status">
<div class="status-row">
<span class="status-label">OPSEC Level</span>
<div class="privacy-meter">
<div class="privacy-level active" title="Minimal"></div>
<div class="privacy-level active" title="Standard"></div>
<div class="privacy-level active" title="Enhanced"></div>
<div class="privacy-level" title="Maximum"></div>
<div class="privacy-level" title="Paranoid"></div>
</div>
<span class="status-value">ENHANCED</span>
</div>
<div class="status-row">
<span class="status-label">Data Transmission</span>
<span class="status-value status-green">ZERO — All local</span>
</div>
<div class="status-row">
<span class="status-label">Session</span>
<span class="status-value" id="session-id">Generating...</span>
</div>
</div>
</div>
</section>
<!-- Phone Intelligence -->
<section id="phone-tool" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon green">☎</div>
Phone Intelligence
</div>
</div>
<p class="tool-desc">Analyze phone numbers for country, carrier, format, and generate investigation search links.</p>
<div class="form-group">
<label>Phone Number</label>
<div class="input-row">
<input type="text" id="phone-input" placeholder="e.g. +1 (555) 123-4567 or 442071234567" autocomplete="off">
<button class="btn" onclick="analyzePhone()">Analyze</button>
</div>
</div>
<div class="results" id="phone-results"></div>
</div>
</section>
<!-- Email Analysis -->
<section id="email-tool" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon blue">✉</div>
Email Analysis
</div>
</div>
<p class="tool-desc">Analyze email addresses for provider, disposable detection, pattern analysis, and OSINT search links.</p>
<div class="form-group">
<label>Email Address</label>
<div class="input-row">
<button class="btn" onclick="analyzeEmail()">Analyze</button>
</div>
</div>
<div class="results" id="email-results"></div>
</div>
</section>
<!-- Username Recon -->
<section id="username-tool" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon purple">☃</div>
Username Reconnaissance
</div>
</div>
<p class="tool-desc">Search a username across 16+ platforms. Click any platform link to check if the profile exists.</p>
<div class="form-group">
<label>Username</label>
<div class="input-row">
<input type="text" id="username-input" placeholder="e.g. johndoe42" autocomplete="off">
<button class="btn" onclick="analyzeUsername()">Search</button>
</div>
</div>
<div class="results" id="username-results"></div>
</div>
</section>
<!-- Domain Recon -->
<section id="domain-tool" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon orange">☁</div>
Domain Reconnaissance
</div>
</div>
<p class="tool-desc">Analyze domains and access reconnaissance tools — WHOIS, DNS, SSL certs, and historical data.</p>
<div class="form-group">
<label>Domain</label>
<div class="input-row">
<input type="text" id="domain-input" placeholder="e.g. example.com or subdomain.example.com" autocomplete="off">
<button class="btn" onclick="analyzeDomain()">Analyze</button>
</div>
</div>
<div class="results" id="domain-results"></div>
</div>
</section>
<!-- Entity Extractor -->
<section id="extractor" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon red">✒</div>
Entity Extractor
</div>
</div>
<p class="tool-desc">
Paste any text below and Spin will automatically extract emails, phone numbers, IP addresses,
domains, URLs, crypto addresses, hashtags, and usernames.
</p>
<div class="form-group">
<label>Text to Analyze</label>
<textarea id="extract-input" placeholder="Paste any text here... emails, phone numbers, URLs, crypto addresses, and more will be automatically detected."></textarea>
</div>
<button class="btn" onclick="extractEntities()">Extract Entities</button>
<div class="results" id="extract-results"></div>
</div>
</section>
<!-- Hivemind -->
<section id="hivemind" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon green">★</div>
Hivemind — Entity Database
</div>
<div class="btn-group">
<button class="btn btn-sm btn-secondary" onclick="importEntities()">Import</button>
<button class="btn btn-sm btn-secondary" onclick="exportEntities()">Export JSON</button>
<button class="btn btn-sm btn-secondary btn-danger" onclick="clearEntities()">Clear All</button>
</div>
</div>
<p class="tool-desc">
All discovered entities are collected here. Filter, search, export, or import entity databases.
Data is stored locally in your browser (localStorage).
</p>
<div class="filter-row">
<select id="entity-filter">
<option value="all">All Types</option>
<option value="email">Email</option>
<option value="phone">Phone</option>
<option value="domain">Domain</option>
<option value="ipv4">IPv4</option>
<option value="url">URL</option>
<option value="username">Username</option>
<option value="bitcoin">Bitcoin</option>
<option value="ethereum">Ethereum</option>
<option value="hashtag">Hashtag</option>
</select>
<input type="text" id="entity-search" placeholder="Search entities..." autocomplete="off">
</div>
<div class="table-wrap">
<table class="entity-table">
<thead>
<tr>
<th>Type</th>
<th>Value</th>
<th>Source</th>
<th>Count</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="entity-table-body"></tbody>
</table>
</div>
</div>
</section>
<!-- OSINT Bookmarks -->
<section id="bookmarks" class="panel">
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="card-icon blue">☰</div>
OSINT Bookmarks
</div>
</div>
<p class="tool-desc">Curated collection of 50+ OSINT tools and resources organized by category.</p>
<div class="form-group">
<input type="text" id="bookmark-search" placeholder="Search bookmarks..." autocomplete="off">
</div>
<div id="bookmarks-container"></div>
</div>
</section>
</main>
<!-- Security Status Dashboard -->
<div class="sec-dashboard">
<div class="sec-dashboard-header">
<span class="sec-dashboard-title">
<span class="sec-pulse"></span>
Security Status
</span>
<span class="sec-dashboard-subtitle" id="sec-opsec-label">ENHANCED</span>
</div>
<div class="sec-grid" id="sec-grid">
<div class="sec-cell" id="sec-connection">
<div class="sec-cell-indicator green"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">---</span>
<span class="sec-cell-label">Connection</span>
</div>
</div>
<div class="sec-cell" id="sec-data-out">
<div class="sec-cell-indicator green"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">ZERO</span>
<span class="sec-cell-label">Data Sent</span>
</div>
</div>
<div class="sec-cell" id="sec-storage">
<div class="sec-cell-indicator green"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">---</span>
<span class="sec-cell-label">Storage</span>
</div>
</div>
<div class="sec-cell" id="sec-dnt">
<div class="sec-cell-indicator orange"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">---</span>
<span class="sec-cell-label">Do Not Track</span>
</div>
</div>
<div class="sec-cell" id="sec-cookies">
<div class="sec-cell-indicator green"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">---</span>
<span class="sec-cell-label">Cookies</span>
</div>
</div>
<div class="sec-cell" id="sec-uptime">
<div class="sec-cell-indicator green"></div>
<div class="sec-cell-data">
<span class="sec-cell-value">00:00</span>
<span class="sec-cell-label">Session</span>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<p class="footer-brand">
<strong>Spin Web</strong> v12.0.3 "Jessica Jones" — OSINT Mini Toolkit
</p>
<p class="footer-privacy">All analysis runs locally in your browser. No data is sent to any server. Ever.</p>
<p class="footer-links">
<a href="https://github.com/thumpersecure/Spin">GitHub</a> ·
<a href="https://github.com/thumpersecure/Spin/releases">Desktop Downloads</a> ·
Built by the Spin team
</p>
<p class="footer-joke" id="footer-joke">Remember: It's not stalking if it's public data.</p>
</div>
</footer>
<!-- Toast Notification -->
<div id="toast" class="toast"></div>
<!-- Random Tip Popup -->
<div id="tip-popup" class="tip-popup">
<div class="tip-popup-header">
<span>Field Note</span>
<button onclick="closeTipPopup()" class="tip-close">×</button>
</div>
<p id="tip-popup-text"></p>
</div>
<!-- Install Banner (iOS + Android) -->
<div id="install-banner" class="install-banner">
<div class="install-banner-content">
<div class="install-banner-icon">S</div>
<div class="install-banner-text">
<strong>Install Spin Web</strong>
<span>Add to Home Screen for the full app experience — offline access, no browser UI, instant launch.</span>
</div>
<button id="install-btn" class="btn btn-sm" style="display:none" onclick="triggerInstall()">Install</button>
<button class="install-banner-close" onclick="dismissInstallBanner()" aria-label="Dismiss">×</button>
</div>
<div class="install-banner-steps" id="install-steps"></div>
</div>
<script src="app.js"></script>
</body>
</html>