-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark-web.html
More file actions
417 lines (321 loc) · 25.3 KB
/
Copy pathdark-web.html
File metadata and controls
417 lines (321 loc) · 25.3 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NewsFlash | Post</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon.png">
<!-- Remix icons -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- Swiper.js styles -->
<link rel="stylesheet" href="./assets/css/swiper-bundle.min.css"/>
<!-- Custom styles -->
<link rel="stylesheet" href="./assets/css/main.css">
</head>
<body>
<!-- Header -->
<header class="header" id="header">
<nav class="navbar container">
<a href="./index.html">
<h2 class="logo">TechFlash</h2>
</a>
<div class="menu" id="menu">
<ul class="list">
<li class="list-item">
<a href="#" class="list-link current">Home</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Categories</a>
<ul class="Categories">
<li class="list-item">
<a href="#" class="list-link">AI</a>
</li>
<li class="list-item">
<a href="#" class="list-link">IOT</a>
</li>
<li class="list-item">
<a href="#" class="list-link">E-sports</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Software</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Blockchain</a>
</li>
<li class="list-item">
<a href="#" class="list-link">How-to-do</a>
</li>
</ul>
</li>
<li class="list-item">
<a href="#" class="list-link">Reviews</a>
</li>
<li class="list-item">
<a href="#" class="list-link">News</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Contact</a>
</li>
<li class="list-item screen-lg-hidden">
<a href="./sign-in.html" class="list-link">Sign in</a>
</li>
<li class="list-item screen-lg-hidden">
<a href="./sign-up.html" class="list-link">Sign up</a>
</li>
</ul>
</div>
<div class="list list-right">
<button class="btn place-items-center" id="theme-toggle-btn">
<i class="ri-sun-line sun-icon"></i>
<i class="ri-moon-line moon-icon"></i>
</button>
<button class="btn place-items-center" id="search-icon">
<i class="ri-search-line"></i>
</button>
<button class="btn place-items-center screen-lg-hidden menu-toggle-icon" id="menu-toggle-icon">
<i class="ri-menu-3-line open-menu-icon"></i>
<i class="ri-close-line close-menu-icon"></i>
</button>
<a href="sign-in.html" class="list-link screen-sm-hidden">Sign in</a>
<a href="sign-in.html" class="btn sign-up-btn fancy-border screen-sm-hidden">
<span>Sign up</span>
</a>
</div>
</nav>
</header>
<!-- Search -->
<div class="search-form-container container" id="search-form-container">
<div class="form-container-inner">
<form action="" class="form">
<input class="form-input" type="text" placeholder="What are you looking for?">
<button class="btn form-btn" type="submit">
<i class="ri-search-line"></i>
</button>
</form>
<span class="form-note">Or press ESC to close.</span>
</div>
<button class="btn form-close-btn place-items-center" id="form-close-btn">
<i class="ri-close-line"></i>
</button>
</div>
<!-- blog post -->
<section class="blog-post section-header-offset">
<div class="blog-post-container container">
<div class="blog-post-data">
<h3 class="title blog-post-title">The Dark Web: Exploring the Hidden Internet</h3>
<div class="article-data">
<span>May 27th 2023</span>
<span class="article-data-spacer"></span>
<span>5 Min read</span>
</div>
</div>
<div class="container">
<img src="./assets/images/dark-web/darkweb.webp" alt="">
<h4>In the realm of the Internet, few things carry as infamous a reputation as the Dark Web. Widely utilized for cybercrime, theft, money laundering, terrorism, and human abuse, it remains the target of countless authorities and agencies, all vying to catch its criminal users and curb its usage. Paradoxically, the very foundation of the Dark Web was developed by the US military and made accessible to the public, free of charge.</h4>
<p>Welcome to the Dark Web – a truly seedy and sinister corner of the web, or could it also be a tool for freedom and civil rights? Let's find out...</p>
<h3>TL;DR: What is the Dark Web?</h3>
<p>The Dark Web is a network of websites that operate on an encrypted layer of the internet, inaccessible to standard web browsers. It's predominantly accessed via Tor or I2P. These networks anonymize user data by routing it through multiple servers worldwide, encrypting it at each stage (known as 'onion routing'). This makes both the origin and content of the data difficult to trace.</p>
<p>Websites on the Dark Web use ".onion" or ".i2p" top-level domains and are not indexed by standard search engines, providing an environment of increased privacy and anonymity.</p>
<h3>Surface web, deep web, and dark web</h3>
<p>The Internet is a worldwide network of computers as you're likely already aware. Among the many data systems utilizing this network is the World Wide Web (WWW). When you use a web browser to visit a site like TechSpot, your computer is requesting files hosted on a remote machine, somewhere else on the planet.</p>
<p>A multitude of machines seamlessly handle this process for you – connecting you to the appropriate server, transferring the files your browser requests, and so on. You can locate any of our web pages, along with billions of others, because they are publicly accessible and have been indexed by the likes of Google.</p>
<p>This accessible segment of the web is widely referred to as the Surface Web, yet it constitutes just a small fraction of the total data accessible through the Internet. The remainder, which isn't indexed, is often termed the Deep Web.</p>
<img src="./assets/images/dark-web/dark-web-1.webp" alt="">
<p>Deep Web data is relatively hidden, but not invisible – for example, cloud storage and online banking services, as well as web-based email, government, and other agencies are all located within the Deep Web. If you know the exact location of it, via its URL or IP address, then you can easily get to it, though it's likely to be kept secure with passwords or some kind of payment system.</p>
<p>This kind of content isn't indexed because the computers that host the data block automated programs, known as bots, from trawling through the sites, as part of the indexing process. It doesn't necessarily mean the computers contain anything illegal or are being used for anything nefarious (they are, after all, perfectly visible on the Internet) – it's simply a matter of improved security and privacy.</p>
<p>However, there are Internet users who take these privacy measures to an extreme level, employing a highly private network of computers that can only be accessed using the appropriate software. Moreover, the locations and login credentials are exclusive knowledge to specific individuals.</p>
<p>The content hosted on these machines is collectively referred to as the Dark Web.</p>
<h3>Darknets: hiding in plain sight</h3>
<p>Since the Surface Web is so accessible, as is the majority of the Deep Web if you know where to look, you might be wondering how exactly one can completely hide a collection of servers that ultimately still connects to the Internet.</p>
<p>It's achieved by the use of overlay networks (groups of computers that use another network to communicate through) that can only be accessed through the use of specific software, networking protocols, or exclusive authorization.</p>
<img src="./assets/images/dark-web/dark-web-2.webp" alt="">
<p>Specific versions of these systems are typically labeled as darknets and are used to do things like peer-to-peer file sharing. However, the use of a darknet itself doesn't mean that everything is hidden – accessing one from your home ISP account will leave an identifiable trace back to you.</p>
<p>The Dark Web comprises a multitude of darknets that are employed to host so-called anonymous proxy networks – these use multiple servers acting as relays, transferring data from machine to machine, and encrypting the transactions as they come and go. The more relays used, the harder it becomes to track everything within the darknet.</p>
<p>One of the most well-known systems that do this is called Tor and it's named after the technology itself: The Onion Router. Onion routing was initially developed by the US Naval Research Laboratory in the mid-1990s, as a means to protect intelligence transmissions across the Internet, through the use of multiple encryption layers (hence 'onion'). The code was eventually released under a free license and soon lots of projects started appearing based on it (Tor just being one of them).</p>
<img src="./assets/images/dark-web/dark-web-3.webp" alt="">
<p>Servers in Tor's darknet are owned and run by volunteers, and currently number in the thousands, all across the globe. Some are publicly listed (relays), whereas others aren't (bridges), and get used by millions of people every day.</p>
<h3>What the Dark Web is used for</h3>
<p>The first thing to note here is that accessing content located within the Dark Web isn't illegal, in most countries at least – the exceptions being those that monitor and heavily police all online activities, regardless of what part of the Web it's in.</p>
<p>Having a very secure and private network, which actively tries to keep its users as hidden as possible, is going to be of use to numerous government bodies, as well as individuals needing protection, such as political dissidents and whistleblowers, or simply just users who wish to keep their digital content as private and safe as possible.</p>
<p>In countries where simply expressing an open view critical of governing policies, could lead to arrest and far worse, the use of darknets offers one of the few means of safely communicating with others. It does mean, though, that conspiracy obsessives, those far beyond the likes posting wild ideas on social media, are also frequent users of these hidden networks, usually from being repeatedly banned from public websites in the Surface Web.</p>
<img src="./assets/images/dark-web/dark-web-4.webp" alt="">
<p>And the very nature of the Dark Web also makes it ideal for those wishing to carry out illegal activities or store content that's far more serious and illegal in all parts of the world.</p>
<p>Data that has been stolen, counterfeit money, forged documents, credit card and social security numbers are all typically sold by people frequenting the Dark Web. Sites selling cheap pharmaceuticals sit side-by-side with those offering firearms, narcotics, or pornographic material involving minors.</p>
<p>In recent years, offers of cybercrime services have risen in number, as ransomware attacks have targeted ever-larger companies, and hacking groups routinely use darknets to discuss targets, share software, and so on (though sometimes to the benefit of the law).</p>
<p>It is these that give the Dark Web its reputation and it's not hard to see why.</p>
<h3>Accessing the Dark Web</h3>
<p>It's worth noting that one cannot simply stumble across any of the above, simply by logging on to your home Internet account and using a regular web browser. In the case of the latter, something like the Tor Browser is required to access content within the Dark Web.</p>
<p>This program can be used just like any other browser, but its "hidden services" features allow users to access the whole Web, without revealing their location or other identifying traits. It's used by thousands of people, every day, for perfectly sensible and legitimate reasons.</p>
<p>Tor isn't a VPN (Virtual Private Network) but it does use multi-layered encryption for all data transferred in browsing sessions and can access the Tor Network, which other browsers can't do. This is a collection of thousands of servers, across the globe, maintained by anonymous volunteers. Just as the servers that host TechSpot are a tiny part of the Surface Web, the Tor Network is a small part of the Dark Web.</p>
<img src="./assets/images/dark-web/dark-web-5.webp" alt="">
<p>Now, while some authorities use Tor themselves for managing the transfer of covert information, many others view anyone who uses the program with deep suspicion. And given the nature of some (many?) of the users of the Dark Web, any attempt to use the Tor Network should be done carefully – so that means taking your online privacy and security as seriously as possible.</p>
<p>One approach is to use an old computer, that's not your main machine, and run it with something like the Tails operating system. This portable Linux distribution is designed to run directly off a USB flash drive and comes with Tor pre-installed. In other words, you boot the computer using Tails, rather than Windows, for example.</p>
<p>Next, if you want to ramp up your privacy further, don't use your home ISP. Instead, connect to a public WiFi hotspot but as these aren't very secure, using a VPN before firing up Tor is an absolute must.</p>
<p>It's somewhat obvious to say this, but it's still worth repeating – don't use your own name or email address. Randomized, throwaway accounts are vital for ensuring you're not leaving a trail back to your personal details. And while GB of free files might seem enticing, there's a good chance that they're simply carriers for malware, so don't download anything unless you're 100% certain of the file's integrity and origins.</p>
<h3>Practical (and legal) uses for the Dark Web</h3>
<p>As noted, although the Dark Web can be a place for illicit activities, you may also leverage it in responsible and ethical uses, in compliance with local laws and regulations.</p>
<ul>
<li><strong>Privacy-focused Email Services:</strong>
<ul>
<li>ProtonMail, a Swiss-based email service, is accessible on the Dark Web to avoid censorship and provide an encrypted email service. It's ideal for those wanting to communicate confidentially.</li>
</ul>
</li>
<li><strong>Whistleblowing:</strong>
<ul>
<li>Platforms like SecureDrop allow anonymous information-sharing, and it's used by journalistic entities including The Guardian and The New York Times for secure communication with whistleblowers.</li>
</ul>
</li>
<li><strong>Facebook:</strong>
<ul>
<li>Facebook has a presence on the Dark Web, letting people access the platform from areas where it's blocked or censored. It's useful for people living under oppressive regimes. DuckDuckGo is also available in the Dark Web as a tracker-free search engine.</li>
</ul>
</li>
<li><strong>Privacy and Freedom Advocacy:</strong>
<ul>
<li>The Tor Project uses the Dark Web for its site to provide information about internet privacy, security, and freedom from surveillance.</li>
</ul>
</li>
<li><strong>Cryptocurrency Transactions:</strong>
<ul>
<li>Bitcoin and other cryptocurrencies can be transacted over the Dark Web, providing an extra layer of anonymity to users. This can be useful for people living in countries with strict financial controls.</li>
</ul>
</li>
<li><strong>Internet Freedom in Oppressive Regimes:</strong>
<ul>
<li>For people in countries with strict internet censorship, the Dark Web can be a lifeline, providing access to uncensored news and the ability to communicate freely with the outside world. Sites such as the BBC and ProPublica are available in the Dark Web.</li>
</ul>
</li>
</ul>
<h3>A cautionary note to end with</h3>
<p>For some people in the world, using the Tor Network or similar networks is the only way they can safely access the Internet, without immediate reprisals from oppressive regimes. Without the existence of the Dark Web, the general public would have less knowledge about the machinations of governments and corporations or crimes committed in conflicts.</p>
<p>But for all the positive aspects of the Dark Web, the name is now ever associated with serious crime, in the eyes of most governments. With the worldwide cost of cybercrime estimated by some to reach $10 trillion in just a few years, and large-scale agencies heavily focusing on combating the use of the Dark Web, even the most legitimate users may find themselves being targeted.</p>
<p>So by all means, download Tor and explore the hidden world of the Dark Web, but just remember who else uses it and why.</p>
<div class="author d-grid">
<div class="author-image-box">
<img src="./assets/images/dummy-user.png" alt="" class="article-image">
</div>
<div class="author-about">
<h3 class="author-name">Ramanan</h3>
<p>Tech Enthusiast , student at KCE</p>
<ul class="list social-media">
<li class="list-item">
<a href="#" class="list-link"><i class="ri-instagram-line"></i></a>
</li>
<li class="list-item">
<a href="#" class="list-link"><i class="ri-facebook-circle-line"></i></a>
</li>
<li class="list-item">
<a href="#" class="list-link"><i class="ri-twitter-line"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="newsletter section">
<div class="container">
<h2 class="title section-title" data-name="Newsletter">Newsletter</h2>
<div class="form-container-inner">
<h6 class="title newsletter-title">Subscribe to TechFlash</h6>
<p class="newsletter-description">stay connected</p>
<form action="" class="form">
<input class="form-input" type="text" placeholder="Enter your email address">
<button class="btn form-btn" type="submit">
<i class="ri-mail-send-line"></i>
</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer section">
<div class="footer-container container d-grid">
<div class="company-data">
<a href="./index.html">
<h2 class="logo">TechFlash</h2>
</a>
<p class="company-description">Stay ahead of the curve with our tech flash – the latest news and reviews on all the latest devices and software!</p>
<ul class="list social-media">
<li class="list-item">
<a href="https://www.instagram.com" class="list-link"><i class="ri-instagram-line"></i></a>
</li>
<li class="list-item">
<a href="https://www.facebook.com" class="list-link"><i class="ri-facebook-circle-line"></i></a>
</li>
<li class="list-item">
<a href="https://twitter.com" class="list-link"><i class="ri-twitter-line"></i></a>
</li>
<li class="list-item">
<a href="https://in.pinterest.com" class="list-link"><i class="ri-pinterest-line"></i></a>
</li>
</ul>
<span class="copyright-notice">©2023 TechFlash. All rights reserved.</span>
</div>
<div>
<h6 class="title footer-title">Categories</h6>
<ul class="footer-list list">
<li class="list-item">
<a href="#" class="list-link">AI</a>
</li>
<li class="list-item">
<a href="#" class="list-link">IOT</a>
</li>
<li class="list-item">
<a href="#" class="list-link">E-sports</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Software</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Blockchain</a>
</li>
<li class="list-item">
<a href="#" class="list-link">How-to-do</a>
</li>
</ul>
</div>
<div>
<h6 class="title footer-title">Useful links</h6>
<ul class="footer-list list">
<li class="list-item">
<a href="#" class="list-link">Home</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Elements</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Tags</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Authors</a>
</li>
</ul>
</div>
<div>
<h6 class="title footer-title">Company</h6>
<ul class="footer-list list">
<li class="list-item">
<a href="#" class="list-link">Contact us</a>
</li>
<li class="list-item">
<a href="#" class="list-link">F.A.Q</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Careers</a>
</li>
<li class="list-item">
<a href="#" class="list-link">Authors</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- Swiper.js -->
<script src="./assets/js/swiper-bundle.min.js"></script>
<!-- Custom script -->
<script src="./assets/js/main.js"></script>
</body>
</html>