-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgeneral-info.html
357 lines (357 loc) · 13.7 KB
/
general-info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Threat Intelligence Center - Home</title>
<meta name="description" content="" />
<meta name="author" content="" />
<!-- MANIFEST AND ICONS -->
<link rel="icon" href="site-data/favicon.ico" type="image/x-icon" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="site-data/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="site-data/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="site-data/favicon-16x16.png"
/>
<link rel="manifest" href="site-data/site.webmanifest" />
<!-- CSS FILES -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/bootstrap-icons.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="top">
<main>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.html">
<i class="bi-back"></i>
<span>Threat Intelligence Center</span>
</a>
<div class="d-lg-none ms-auto me-4">
<a href="#top" class="navbar-icon bi-person smoothscroll"></a>
</div>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-lg-5 me-lg-auto">
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_1"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_2"
>Browse Topics</a
>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_3"
>How does it work?</a
>
</li>
<li class="nav-item">
<a class="nav-link click-scroll" href="index.html#section_4"
>FAQs</a
>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarLightDropdownMenuLink1"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>Contact</a
>
<ul
class="dropdown-menu dropdown-menu-light"
aria-labelledby="navbarLightDropdownMenuLink"
>
<li>
<a
class="dropdown-item"
href="https://discord.gg/2nHHHBWNDw"
>Discord</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/ThatSINEWAVE/OSINT-Toolkit"
>Github</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://ko-fi.com/thatsinewave"
>Support Me</a
>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarLightDropdownMenuLink"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>Languages</a
>
<ul
class="dropdown-menu dropdown-menu-light"
aria-labelledby="navbarLightDropdownMenuLink"
>
<li>
<a class="dropdown-item" href="">English</a>
</li>
<li>
<a class="dropdown-item" href="">Romanian</a>
</li>
</ul>
</li>
</ul>
<div class="d-none d-lg-block">
<a href="#top" class="navbar-icon bi-arrow-up smoothscroll"></a>
</div>
</div>
</div>
</nav>
<header
class="site-header d-flex flex-column justify-content-center align-items-center"
>
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-lg-5 col-12 mb-5">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">Home</a>
</li>
<li class="breadcrumb-item active" aria-current="page">
Info Gathering
</li>
</ol>
</nav>
<h2 class="text-white"><br />Information Gathering</h2>
</div>
</div>
</div>
</header>
<section class="topics-detail-section section-padding" id="topics-detail">
<div class="container">
<div class="row">
<div class="col-lg-8 col-12 m-auto">
<h3>1. Belling-cat's Online Investigation Toolkit</h3>
<a
href="https://docs.google.com/spreadsheets/d/18rtqh8EG2q1xBo2cLNyhIDuK9jrPGwYr9DI2UncoqJQ"
target="_blank"
>https://docs.google.com/spreadsheets/d/18rtqh8EG2q1xBo2cLNyhIDuK9jrPGwYr9DI2UncoqJQ</a
>
<p>
This online toolkit, curated by Bellingcat, provides resources
for online investigations.
</p>
<p>
It includes a variety of tools and techniques for researching
and analyzing information on the internet.
</p>
<h3>2. Hunter.io</h3>
<a href="https://hunter.io" target="_blank">https://hunter.io</a>
<p>
Hunter.io is a popular tool for finding email addresses using
web crawlers.
</p>
<p>
It assists users in discovering email addresses associated with
a particular domain, making it valuable for outreach and contact
purposes.
</p>
<h3>3. Shodan</h3>
<a href="https://shodan.io" target="_blank">https://shodan.io</a>
<p>Shodan is an internet-connected device search engine.</p>
<p>
It assists in finding specific devices based on various
criteria, offering insights into potential vulnerabilities and
aiding in targeted cyber assessments.
</p>
<p>Shodan provides both free and paid plans.</p>
<h3>4. IntelX</h3>
<a href="https://intelx.io" target="_blank">https://intelx.io</a>
<p>IntelX is a large search engine for leaked databases.</p>
<p>
It enables users to search and access information from various
data breaches, aiding in the identification and analysis of
compromised data.
</p>
<h3>5. Epieos</h3>
<a href="https://epieos.com" target="_blank"
>https://epieos.com</a
>
<p>Epieos is a platform for email and phone number searches.</p>
<p>
It assists users in retrieving information related to
individuals based on their email addresses or phone numbers.
</p>
<h3>6. What's My Name</h3>
<a href="https://whatsmyname.app" target="_blank"
>https://whatsmyname.app</a
>
<p>
A username searcher tool that allows users to search for a
specific username across multiple platforms.
</p>
<p>
It aids in identifying online profiles associated with a
particular username.
</p>
<h3>7. 0t.rocks MultiSearch</h3>
<a href="https://search.0t.rocks" target="_blank"
>https://search.0t.rocks</a
>
<p>
A multi-search tool that enables users to simultaneously search
across multiple platforms and databases.
</p>
<p>
It streamlines the process of gathering information from various
sources.
</p>
<h3>8. FaceCheck.ID</h3>
<a href="https://facecheck.id" target="_blank"
>https://facecheck.id</a
>
<p>
An AI-based face recognition tool that can analyze and identify
faces in images.
</p>
<p>
FaceCheck.ID provides a solution for facial recognition
applications, potentially aiding in the verification or
identification of individuals.
</p>
<h3>9. GeoEstimation by TIB</h3>
<a href="https://labs.tib.eu/geoestimation" target="_blank"
>https://labs.tib.eu/geoestimation</a
>
<p>
GeoEstimation is a tool for estimating geographical locations
based on provided data.
</p>
<p>
It utilizes technology to determine the likely geographic origin
of a given set of information.
</p>
<h3>10. Insecam</h3>
<a href="http://www.insecam.org" target="_blank"
>http://www.insecam.org</a
>
<p>
Insecam hosts a global camera database, allowing users to access
publicly available camera feeds from around the world.
</p>
<p>
It raises awareness about the importance of securing
surveillance cameras and privacy.
</p>
<h3>11. Osintly</h3>
<a href="https://osint.ly" target="_blank">https://osint.ly</a>
<p>
Osintly is an all-in-one OSINT platform designed for
comprehensive online searches. It allows users to search for
usernames, emails, phone numbers, cryptocurrency addresses, and
domain names across a wide range of websites and platforms,
including social media, forums, and data breach sites.
</p>
<p>
The platform also provides insights into exposed data from
security breaches, helping users track their digital footprint
and identify potential privacy and security risks. Osintly is an
invaluable tool for OSINT investigations and awareness of online
threats.
</p>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer section-padding section-bg">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-6">
<h6 class="site-footer-title mb-3">Threat Intelligence Center</h6>
<ul class="site-footer-links">
<li class="site-footer-link-item">
<a href="#section_1" class="site-footer-link">Home</a>
</li>
<li class="site-footer-link-item">
<a href="#section_2" class="site-footer-link">Browse Topics</a>
</li>
<li class="site-footer-link-item">
<a href="#section_3" class="site-footer-link"
>How does it work?</a
>
</li>
<li class="site-footer-link-item">
<a href="#section_4" class="site-footer-link">FAQs</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-12 mt-4 mt-lg-0 ms-auto">
<p class="copyright-text mt-lg-5 mt-4">
GLWTS Public License © 2024
<a href="https://github.com/ThatSINEWAVE" class="site-footer-link"
>ThatSINEWAVE</a
>
</p>
<p class="copyright-text mt-lg-5 mt-4">
Frontend designed by
<a
href="https://github.com/sanchitachaurasia"
class="site-footer-link"
>Sanchita Chaurasia</a
>
</p>
</div>
</div>
</div>
</footer>
<!-- JAVASCRIPT FILES -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/click-scroll.js"></script>
<script src="js/custom.js"></script>
<script src="js/new-scroll.js"></script>
</body>
</html>