-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
570 lines (511 loc) · 16 KB
/
index.html
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="description" />
<meta name="keywords" content="keywords" />
<meta name="author" content="author" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<title>CScorza</title>
<html lang="en">
<head>
<title>Particle System</title>
</head>
<body>
<div id="particles"></div>
<script>
var particles = new ParticleSystem({
container: document.querySelector('#particles'),
particles: {
number: 1000,
size: {
min: 10,
max: 20
},
color: {
start: '#000',
end: '#fff'
},
shape: 'circle',
speed: {
min: 1,
max: 3
},
direction: {
min: 0,
max: 2 * Math.PI
},
life: {
min: 2,
max: 5
}
},
interactivity: {
events: {
onHover: function (particle) {
particle.color = '#fff';
},
onLeave: function (particle) {
particle.color = '#000';
}
}
}
});
</script>
<style>
body {
background-color: rgb(1, 14, 19);
}
.zoom-image {
width: 500px;
height: 300px;
overflow: hidden;
}
a {
text-decoration: none;
}
a:hover {
color: #;
}
#top-right {
position: absolute;
top: 20px;
right: 10px;
padding: 10px;
font-size: 30px;
font-family: sans-serif;
color: white;
background-color:;
}
#center {
position: absolute;
top: 34px;
left: 35%;
transform: translateX(-50%);
padding: 30px;
font-size: 50px;
font-family: Impact, 'Arial Narrow Bold', sans-serif;
color: white;
background-color: ;
text-align: center;
}
#button-container {
position: absolute;
top: 160px;
left: 23%;
transform: translateX(-50%);
text-align: center;
}
#button-container ul {
padding: 0;
margin: 0;
display: inline-block;
}
#button-container li {
display: inline-block;
margin-right: 10px;
}
#logo-container {
position: absolute;
top: 20px;
left: 20px;
}
#quote {
position: absolute;
top: 20px;
right: 20px;
font-size: 30px;
font-family: sans-serif;
color: white;
}
</style>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/zoomooz/dist/zoomooz.min.js"></script>
<script>
$(document).ready(function() {
$('.zoom-image').zoomTo({ duration: 2000 });
});
</script>
</head>
<body class="home page-template-default page page-id-4 translatepress-en_US skin-default sidebar-none default_width tb_animation_on ready-view header-top-bar fixed-header-enabled footer-block theme-color-black theme-font-sans-serif tagline-off social-widget-off footer-widgets-off footer-menu-navigation-off filter-hover-sepia filter-featured-only sidemenu-active fixed-header-on cookies-set cookies-accepted mobile_menu_active" cz-shortcut-listen="true">
<div id="logo-container">
<a href="https://github.com/CScorza/">
<img src="./Logo.gif" alt="Image" style="width:300px;">
</a>
</div>
<div id="center">
CScorza - Indagini Telematiche
</div>
<div id="button-container">
<ul>
<li>
<a href="https://www.linkedin.com/in/cscorza/">
<img src="./Linkedin.png" alt="LinkedIn Profile" title="LinkedIn Profile" style="width:45px;">
</a>
</li>
<li>
<a href="https://github.com/CScorza/">
<img src="./GITHUB.png" alt="Github Profile" title="Github Profile" style="width:45px;">
</a>
</li>
<li>
<a href="https://t.me/CScorzaOSINT">
<img src="./Telegram.png" alt="Telegram Profile" title="Telegram Profile" style="width:45px;">
</a>
</li>
</ul>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div id="quote">
"L'intelligenza è la capacità di adattarsi al cambiamento" <br> Stephen Hawking
</div>
<head>
<style>
#ip-address-container {
position: absolute;
top: 200px;
right: 40px;
text-align: right;
}
#ip-address {
color: #3366cc;
font-family: Arial, sans-serif;
font-size: 20px;
font-weight: bold;
}
#visitor-counts {
color: #ffffff;
font-family: Arial, sans-serif;
font-size: 14px;
margin-top: 10px;
}
</style>
<script>
// Funzione per ottenere l'indirizzo IP del client
function getIPAddress() {
fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
document.getElementById('ip-address').textContent = data.ip;
updateVisitorCounts(data.ip);
})
.catch(error => {
console.log('Si è verificato un errore:', error);
});
}
// Funzione per aggiornare i conteggi dei visitatori
function updateVisitorCounts(ip) {
// Verifica se esiste il conteggio giornaliero nel localStorage
const today = new Date().toISOString().split('T')[0];
let dailyCount = localStorage.getItem(today);
if (dailyCount) {
// Se esiste, incrementa il conteggio giornaliero
dailyCount = parseInt(dailyCount) + 1;
} else {
// Se non esiste, inizializza il conteggio giornaliero a 1
dailyCount = 1;
}
// Aggiorna il conteggio giornaliero nel localStorage
localStorage.setItem(today, dailyCount);
// Ottieni il conteggio totale
const totalCount = Object.keys(localStorage).length;
// Aggiorna i conteggi visualizzati sulla pagina
document.getElementById('daily-count').textContent = dailyCount;
document.getElementById('total-count').textContent = totalCount;
}
</script>
</head>
<body onload="getIPAddress()">
<div id="ip-address-container">
<h1 style="color: #ffffff; font-family: Arial, sans-serif;">Il tuo indirizzo IP:</h1>
<p id="ip-address"></p>
<div id="visitor-counts">
<p>Visitatori giornalieri: <span id="daily-count"></span></p>
<p>Visitatori totali: <span id="total-count"></span></p>
</div>
</div>
</body>
</html>
<br>
<br>
<br>
</body>
<div style="background-color: #0c1a1f; padding: 20px;">
<div style="font-size: 40px; font-family: Helvetica; color: white; text-align: left; margin-bottom: 40px;">Strumenti di Analisi e di Verifica</div>
<div style="display: flex; justify-content: left;">
</div>
<head>
<style>
/* Stile per centrare l'elemento */
.container {
display: flex;
justify-content: left;
align-items: left;
gap: 2px;
}
/* Stile per l'immagine a sinistra */
.image {
margin: 0px;
}
</style>
</head>
<body>
<style>
.gray-frame {
width: 25%;
border: 2px solid #565656; /* Aggiunto bordo di colore verde scuro */
border-radius: 1px;
padding: 5px;
}
.iframe-text {
font-size: 18px; /* Ridotto la dimensione del testo */
color: white;
text-align: center;
margin-top: 4px;
}
</style>
<div class="container">
<figure class="gray-frame">
<iframe src="https://canarytokens.org/generate" width="100%" height="500"></iframe>
<div class="iframe-text">Canary Tokens</div>
</figure>
<figure class="gray-frame">
<iframe src="https://who.is/" width="100%" height="500"></iframe>
<div class="iframe-text">Analisi IP</div>
</figure>
<figure class="gray-frame">
<iframe src="https://mxtoolbox.com/EmailHeaders.aspx" width="100%" height="500"></iframe>
<div class="iframe-text">ANALISI E-MAIL</div>
</figure>
<figure class="gray-frame">
<iframe src="https://29a.ch/photo-forensics/#forensic-magnifier" width="100%" height="500"></iframe>
<div class="iframe-text">ANALISI DELLE IMMAGINI</div>
</figure>
</div>
</body>
</html>
<br>
<br>
<br>
<head>
</head>
<head>
<style>
/* Stile per centrare il contenitore */
.center-container {
display: flex;
justify-content: center;
align-items: center;
height: 1vh; /* Imposta l'altezza del contenitore come altezza della viewport */
}
.container {
padding: 10px;
margin-left: 10px; /* Aggiunto margine sinistro di 4px */
}
</style>
</head>
<body>
<div class="center-container">
<div class="container">
<!--### Verifica Instagram-->
<form onsubmit="doSearch01(this.Search01.value); return false;">
<input type="text" id="Search01" name="Search01" size="60" placeholder="Username" value="">
<input type="submit" style="width:160px" value="Istagram Profile">
</form>
<!--### Verifica Email -->
<form onsubmit="doSearch16(this.Search16.value); return false;">
<input type="text" id="Search16" name="Search16" size="60" placeholder="Verifica Email" value="">
<input type="submit" style="width:160px" value="Hunter Verify">
</form>
<!--### Verifica Attendibilità Sito Internet -->
<form onsubmit="doSearch48(this.Search48.value); return false;">
<input type="text" id="Search48" name="Search48" size="60" placeholder="Verifica Sito" value="">
<input type="submit" style="width:160px" value="VirusTotal">
</form>
</div>
</div>
</body>
<br>
<br>
<br>
<br>
</tr>
</table>
<div style="background-color: #0c1a1f; padding: 20px;">
<div style="font-size: 40px; font-family: Helvetica; color: white; text-align:left; margin-bottom: 40px;">Manuali CScorza</div>
<div style="display: flex; justify-content: center;">
</div>
<br>
<div style="display: flex; justify-content: center; align-items: center;">
<div style="border: 1px solid #565656; border-radius: 8px; padding: 10px; text-align: center; margin-right: 50px;width:90%;height:90%;">
<object data="CScorza - Best Pratics di Digital Forensics.pdf" type="application/pdf" width="100%" height="1000"> </object>
</div>
<div style="border: 1px solid #565656; border-radius: 8px; padding: 10px; text-align: center; margin-right: 50px;width:90%;height:90%;">
<object data="CScorza - Digital Image Forensics nell OSINT.pdf" type="application/pdf" width="100%" height="1000"> </object>
</div>
<div style="border: 1px solid #565656; border-radius: 8px; padding: 10px; text-align: center;margin-right: 50px;width:90%;height:90%;">
<object data="Manuale Basico di OSINT - CScorza.pdf" type="application/pdf" width="100%" height="1000"> </object>
</div>
</div>
</div>
<br>
<div style="background-color: #0c1a1f; padding: 20px;">
<div style="font-size: 40px; font-family: Helvetica; color: white; text-align: left; margin-bottom: 40px;">Strumenti GitHub - CScorza Investigation</div>
<div style="display: flex; justify-content: center;">
</div>
<br>
<!DOCTYPE html>
<html>
<head>
<style>
/* Stile per centrare l'elemento */
.container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
/* Stile per l'immagine a sinistra */
.image {
float: left;
margin-right: 20px;
}
/* Stile per i numeri a destra */
.counter {
font-size: 40px;
font-weight: bold;
text-align: right;
font-family: 'Comic Sans MS', cursive, sans-serif;
margin-top: 20px;
}
/* Stile per il footer */
.footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
text-align: center;
background-color: #f2f2f2;
padding: 10px;
}
</style>
</head>
<body>
<div>
<ul>
<table style="width:100%">
<tr>
<th>
<h2 align="left"><a href="https://github.com/CScorza/DistroForensics/"><img
src=".\Distro Forensics.gif" alt="Image" style="width:280px;"></a></a>
</th>
<th>
<h2 align="left"><a href="https://github.com/CScorza/EstensioniChromeOSINT"><img
src=".\EstensioniChromeOSINT.gif" alt="Image" style="width:280px;"></a></a>
<th>
<h2 align="left"><a href="https://github.com/CScorza/Tool-VATINT"><img
src=".\Tool-VATINT.gif" alt="Image" style="width:280px;"></a></a>
</th>
<th>
<h2 align="left"><a href="https://github.com/CScorza/OSINT-FORENSICS-MOBILE"><img
src=".\OSINT-FORENSICS-MOBILE.gif" alt="Image" style="width:280px;">
</th>
<th>
<h2 align="left"><a href="https://github.com/CScorza/Image-OSINT-Forensics"><img
src=".\Image-OSINT-Forensics.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/Data-Protection"><img
src=".\Data-Protection.gif" alt="Image" style="width:280px;">
</th>
<tr>
<td>
<h2 align="left"><a href="https://github.com/CScorza/CORPINT-Corporate-Intelligence">
<img src=".\CORPINT-Corporate-Intelligence.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/OSINTInvestigation"><img
src=".\OSINTInvestigation.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/GEOINTInvestigation"><img
src=".\GEOINTInvestigation.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/Analisi-Digital-Forense"><img
src=".\Analisi-Digital-Forense.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/OSINTAnonimus/"><img
src=".\OSINTAnonymous.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/SOCMIntelligence"><img
src=".\SOCMIntelligence.gif" alt="Image" style="width:280px;">
</tr>
<th>
<h2 align="left"><a href="https://github.com/CScorza/WEBIntelligence"><img
src=".\WEBIntelligence.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/OSINTWorkstation"><img
src=".\OSINTWorkstaion.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/Generatore-di-Password"><img
src=".\Generatore di Password.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/BruteForceDecryptPDF"><img
src=".\BFDecryptPDF.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/StegoIntelligence"><img
src=".\StegoIntelligence.gif" alt="Image" style="width:280px;">
<th>
<h2 align="left"><a href="https://github.com/CScorza/WatermarkIntelligence"><img
src=".\WatermarkIntelligence.gif" alt="Image" style="width:280px;">
<tr>
<td>
<h2 align="left"><a href="https://github.com/CScorza/OSINTSurveillance">
<img src=".\OSINTSurveillance.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/OSINT-IA">
<img src=".\OSINT-AI.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/CStools">
<img src=".\CStools.gif" alt="Image" style="width:280px;">
<td>
<h2 align="left"><a href="https://github.com/CScorza/CScorzaAnalysis">
<img src=".\Analysis.gif" alt="Image" style="width:280px;">
</a></h2>
</td>
</table>
</ul>
</div>
<br>
<br>
<style>
.legal_and_copy {
text-align: center;
color: white;
}
</style>
<div class="legal_and_copy text">
<div class="copyright">
© CScorza - Tutti i diritti riservati
</div>
<div class="privacy_cookie legal text">
<div text=>Aggionamento Dicembre 2024
</div>
</div>
</div>