-
Notifications
You must be signed in to change notification settings - Fork 13
/
README.html
1653 lines (1540 loc) · 83.4 KB
/
README.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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ONION LINKS</title>
<style>
/* Dracula Darker Theme */
body {
background-color: #21222c;
border: 40px solid #21222c;
margin: 0;
padding: 0 10px;
font-family: "Liberation Sans", "Myriad", "Bitstream Vera Sans", "Lucida Grande", "Luxi Sans", "Trebuchet MS", helvetica, verdana, arial, sans-serif;
line-height: 1.2em;
color: #f8f8f2; /* Foreground color */
}
/* Container styles */
body > div.book, body > div.article, body > div.set, body > div.preface, body > div.chapter, body > div.section, body > div.appendix, body > div.part, div.sect1 {
margin-top: 0;
padding: 2em;
background-color: #282a36; /* Container background */
margin: 40px auto 4em;
padding: 1px 40px 20px 30px;
color: #f8f8f2; /* Container text */
}
/* Headers */
h1, h2, h3, h4, h5, h6 {
color: #bd93f9;
}
/* Links */
a {
color: #8be9fd;
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
p, ol, ul, blockquote, dl, dt, dd, pre, code, kbd, samp, var {
margin-bottom: 1em;
}
/* Bold elements */
b, strong {
font-weight: bold;
color: #ff79c6;
}
i, em {
font-style: italic;
color: #ff79c6; /* Italic elements */
}
/* Code block */
pre, code, kbd, samp, tt {
font-family: 'Courier New', Courier, monospace;
background-color: #282a36; /* Code block background */
border: 1px solid #44475a; /* Code block border */
padding: 3px;
border-radius: 3px;
color: #f8f8f2; /* Code text color */
margin: 0;
display: inline-block;
}
img {
max-width: 100%;
height: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1em;
}
/* Tables */
th, td {
border: 1px solid #44475a; /* Table borders */
padding: 0.5em;
}
thead {
background-color: #6272a4; /* Table header background */
color: #f8f8f2; /* Table header text */
}
tfoot {
background-color: #282a36; /* Table footer background */
color: #f8f8f2; /* Table footer text */
}
/* Bullet List */
ul {
margin: 0;
padding-left: 10px;
}
/* Horizontal rule */
hr {
border: 0;
border-top: 1px solid #44475a;
margin: 2em 0;
}
blockquote {
border-left: 5px solid #bd93f9; /* Blockquote left border */
padding-left: 1em;
color: #ff79c6; /* Blockquote text */
background-color: #282a36; /* Blockquote background */
}
sup, sub {
font-size: 0.8em;
vertical-align: super;
}
sub {
vertical-align: sub;
}
ins {
background-color: #282a36; /* Inserted text background */
text-decoration: none;
}
del {
text-decoration: line-through;
color: #ff79c6; /* Deleted text */
}
s, strike {
text-decoration: line-through;
}
ruby, rt, rp {
font-size: 0.9em;
}
summary {
cursor: pointer;
color: #bd93f9; /* Details summary text */
font-weight: bold;
}
details {
margin-bottom: 1em;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 1em;
background-color: #282a36; /* Container background */
color: #f8f8f2; /* Container text */
}
</style>
</head>
<body>
<div id="header">
<h1>👽🤡🧙👻💀 ONION LINKS 💀👻🧙🤡👽</h1>
<blockquote><h3>"If the government or the parties won't address our needs, we will. It's about direct action, even civil disobedience." (Edward Snowden)</h3></blockquote>
<p align="center"><img src="https://github.com/RENANZG/My-Onion-Links/assets/53377291/13688964-5ddd-4d11-9ae9-baf0c8f996db" title="Las Meninas (1656) - Velazquez"></p>
</div>
<hr>
<!-- ############################################################ -->
<p align="center"><img src=".data/8.png" alt="1" title="1"></p>
<hr>
<!-- ############################################################ -->
<h4>Secure Systems</h4>
<p>Read <a href="https://tb-manual.torproject.org" target="_blank" rel="noopener noreferrer">Tor Browser User Manual</a> for information on how to use Tor. Consider using secure systems in order of complexity:<a href="https://tails.net/">Tails</a>, <a href="https://www.whonix.org/">Whonix</a> and <a href="https://www.qubes-os.org/">Qubes</a>.
<ul>
<li>Tails easy install script from Debian based systems: <a href="https://github.com/RENANZG/My-Onion-Links/blob/main/tails_install.sh">tails_install.sh</a>.</li>
<li>Tails easy install script from Windows: <a href="https://github.com/RENANZG/My-Onion-Links/blob/main/tails_install.sh">tails_install.ps1</a>.
</li>
</ul>
<p>If you wish, send improvements to: <a href="https://github.com/RENANZG/My-Onion-Links/discussions/2">My-Onion-Links Discussions</a></p>
<h4>Bookmarks</h4>
<p>Ready-to-import bookmarks: <a href="https://github.com/RENANZG/My-Onion-Links/blob/main/Import_Bookmarks_from_HTML.html">Import_Bookmarks_from_HTML.html</a></p>
<hr>
<!-- ############################################################ -->
<details>
<summary><b>The Basics of the Dark Web</b></summary>
<a href="https://youtube.com/watch?v=nFZm4sVsPXk">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DnFZm4sVsPXk"
alt="Secure TailsOS Setup For The Average Dark Web Enjoyer" title="Secure TailsOS Setup For The Average Dark Web Enjoyer">
</a>
<a href="https://youtube.com/watch?v=GR_U0G-QGA0">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DGR_U0G-QGA0"
alt="Bad Opsec - How Tor Users Got Caught" title="Bad Opsec - How Tor Users Got Caught">
</a>
<br>
<a href="https://youtube.com/watch?v=NGiUhjuB22Y">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DNGiUhjuB22Y"
alt="DEF CON 30 - Sam Bent - Tor - Darknet Opsec By a Veteran Darknet Vendor"
title="DEF CON 30 - Sam Bent - Tor - Darknet Opsec By a Veteran Darknet Vendor">
</a>
<a href="https://www.youtube.com/watch?v=WkphgF6Hn4w">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DWkphgF6Hn4w" alt="How Monero Users Get Traced (RUN YOUR OWN NODE!)" title="How Monero Users Get Traced (RUN YOUR OWN NODE!)"/>
</a>
<a href="https://youtube.com/watch?v=47zJPU0VHSQ">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D47zJPU0VHSQ"
alt="Cyber Security: Why Is This (Still) So Hard? General Michael V. Hayden, former Director of the NSA and CIA"
title="Cyber Security: Why Is This (Still) So Hard? General Michael V. Hayden, former Director of the NSA and CIA"></a>
<br>
<a href="https://youtu.be/ovAmnAirvz8">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fyoutu.be%2FovAmnAirvz8"
alt="Twitter Hacker Faces 77 Years in Prison" title="Twitter Hacker Faces 77 Years in Prison">
</a>
<a href="https://youtu.be/JehEh7i1PIE">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fyoutu.be%2FJehEh7i1PIE"
alt="This image Can Hack You (The .webp Exploit)" title="This image Can Hack You (The .webp Exploit)">
</a>
<br>
<a href="https://youtube.com/watch?v=PYuB-cCJwkU">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DPYuB-cCJwkU"
alt="How is Interpol experimenting with policing the metaverse? - BBC News"
title="How is Interpol experimenting with policing the metaverse? - BBC News">
</a>
<a href="https://youtube.com/watch?v=d-Jm8-eTLhw&pp=ygUVbG9saSBtZXRhdmVyc2UgcG9saWNl">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dd-Jm8-eTLhw%26pp%3DygUVbG9saSBtZXRhdmVyc2UgcG9saWNl"
alt="The Loli Police Department in VRChat" title="The Loli Police Department in VRChat">
</a>
<br>
<a href="https://youtube.com/watch?v=u8jLUjpCWrs">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Du8jLUjpCWrs"
alt="All PHP Applications are Vulnerable" title="All PHP Applications are Vulnerable"></a>
<a href="https://youtube.com/watch?v=KdbRU1JbcEA">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DKdbRU1JbcEA"
alt="World's Most SECURE Data Center" title="World's Most SECURE Data Center">
</a>
<br>
<a href="https://www.youtube.com/watch?v=ggGmxDq2HBA">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DggGmxDq2HBA"
alt=" Behind the Hacks: The Origins of Anonymous | Cyberwar " title=" Behind the Hacks: The Origins of Anonymous | Cyberwar "/>
</a>
<a href="https://www.youtube.com/watch?v=TLPHmHPaCiQ">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DTLPHmHPaCiQ"
alt=" Where People Go When They Want to Hack You " title=" Where People Go When They Want to Hack You "/>
</a>
<br>
</details>
<!--############################## -->
<details>
<summary><b>Tor Settings for Dark Web</b></summary>
<br>
<h4>Tor Browser Security Settings</h4>
<h2>Privacy Preferences (<code>about:preferences#privacy</code>)</h2>
<p>To access privacy preferences, go to (CTRL + L):</p>
<pre><code>about:preferences#privacy</code></pre>
<p>Adjust the following settings:</p>
<ul>
<li><strong>Prioritize .onion sites when known</strong> - Always prioritize
.onion websites for enhanced security within the Tor network.</li>
<li><strong>Security Level</strong> - Choose the <em>Safest</em> level
to disable potentially insecure features like JavaScript by default.</li>
</ul>
<h2>Tor Network Settings (<code>about:preferences#tor</code>)</h2>
<p>To configure Tor network settings, navigate to (CTRL + L):</p>
<pre><code>about:preferences#tor</code></pre>
<p>Configure the following options:</p>
<ul>
<li><strong>Always connect automatically</strong> - Ensures Tor connects
automatically when you start Tor Browser, maintaining your anonymity.</li>
<li><strong>Use a bridge</strong> - Select a built-in bridge to obfuscate
your Tor traffic and prevent ISP detection.</li>
</ul>
<h5>How Tor Bridges Work</h5>
<p>Tor bridges are specialized relays used to bypass censorship and enhance
your privacy when connecting to the Tor network. They are particularly
useful in situations where access to the Tor network is restricted
or monitored by ISPs or governments.</p>
<p>When you connect to the Tor network, your ISP can see that you are using
Tor based on the distinctive network traffic patterns it generates.
This can lead to censorship or monitoring of Tor usage.</p>
<p>Tor bridges help in circumventing this detection by acting as intermediary
relays that are not publicly listed in the main Tor directory. They
employ various techniques, such as <strong>obfuscation</strong> (e.g.,
<a href="https://tb-manual.torproject.org/bridges/">obfs4 protocol</a>
- <a href="https://bridges.torproject.org/bridges/?transport=obfs4">Get Bridges Here</a>),
to disguise Tor traffic as regular encrypted traffic, making it harder
for ISPs to detect and block.</p>
<p>When to Use Tor Bridges</p>
<ul>
<li>You need to maintain anonymity and privacy without your ISP detecting
your Tor usage.</li>
<li>You are in a region where Tor usage is actively monitored or blocked
by ISPs or governments.</li>
<li>You are experiencing connection issues or slow performance while using
Tor.</li>
</ul>
<hr>
<h4>Advanced Configuration (<code>about:config</code>)</h4>
<p>To access advanced configuration settings, go to (CTRL + L):</p>
<pre><code>about:config</code></pre>
<h5>Basic Configuration</h5>
<p>Adjust the following basic settings:</p>
<ul>
<li><code>javascript.enabled</code> - <b>false</b> - Disables JavaScript
to mitigate potential security risks associated with executing scripts
on web pages.</li>
</ul>
<h5>Advanced Configuration (Enhanced Privacy Settings)</h5>
<p>Configure these settings carefully to enhance your privacy and security
(*take care with fingerprinting):</p>
<ul>
<li><code>webgl.disabled</code> - <b>true</b> - Disables WebGL to prevent
device fingerprinting and potential security vulnerabilities associated
with WebGL. Some advanced graphics and interactive web applications
that rely on WebGL may not function properly.</li>
<li><code>media.peerconnection.enabled</code> - <b>false</b> - Disables
WebRTC to prevent websites from revealing your real IP address through
peer-to-peer connections. Web applications and services that rely
on real-time communication features such as video conferencing, voice
calls, and file sharing may not work properly.</li>
<li><code>privacy.resistFingerprinting</code> - <b>true</b> - Makes Tor
Browser more resistant to fingerprinting techniques by standardizing
browser behaviors.</li>
<li><code>geo.enabled</code> - <b>false</b> - Disables geolocation tracking
to prevent websites from accessing your physical location.</li>
<li><code>dom.battery.enabled</code> - <b>false</b> - Prevents websites
from detecting your device's battery status, enhancing privacy.</li>
<li><code>dom.event.clipboardevents.enabled</code> - <b>false</b> - Disables
clipboard events detection to prevent websites from knowing when
you copy/paste content.</li>
<li><code>network.trr.mode</code> - <b>2</b> - Enables DNS-over-HTTPS (DoH)
to encrypt DNS queries, protecting against DNS manipulation and surveillance.</li>
<li><code>browser.cache.offline.enable</code> - <b>false</b> - Disables
offline cache to prevent websites from storing data on your computer
for offline use.</li>
</ul>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>KVM — Using Whonix with KVM (Kernel Virtual Machine)</b></summary>
<br>
<a href="https://whonix.org/wiki/KVM#What_is_KVM?">https://whonix.org/wiki/KVM</a>
<br>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>HVM — Use any desktop OS without leaving a trace with HiddenVM</b></summary>
<br>
<a href="https://github.com/aforensics/HiddenVM">https://github.com/aforensics/HiddenVM</a>
<br>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>Whonix — How to set up Whonix VM with VirtualBox (Oracle®)</b></summary>
<em>Always prefer the live system mode that doesn't leave any kind of forensic trace. Always prefer Linux as a host.</em>
<h4>1. Check that you have the required computer specification:</h4>
<p><b>Hardware requirements:</b></p>
<p>For optimal performance: 8 GB of RAM.</p>
<p>Processor: A quadcore, 64-bit x86-64 compatible.</p>
<p>Storage device: Minimum of 32 GB.</p>
<a href="https://forums.whonix.org/t/recommended-specs/9679">https://forums.whonix.org/t/recommended-specs/9679</a>
<h4>2. Automatic installation for Linux:</h4>
<a href="https://whonix.org/wiki/Linux">https://whonix.org/wiki/Linux</a>
<br>
<h4>3. Manual installation for Linux:</h4>
<a href="https://whonix.org/wiki/Debian#Debian">https://whonix.org/wiki/Debian#Debian</a>
<br>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>TailsOS VM — How to setup TailsOS VM with VirtualBox (Oracle®)</b></summary>
<br>
<sub>Credits: https://github.com/SuleimanGithub/how-to-setup-tails-os-vm</sub>
<p>Introduction:</p>
<p>Welcome to the tutorial on creating a VirtualBox with TailsOS, Oracle
VM VirtualBox is simple yet powerful as it can be run from a multitude
of devices such as small embedded systems to datacenter deployments
whilst TailsOS is a portable operating system that protects against
surveillance and censorship.</p>
<em>Always prefer the live mode that doesn't leave any kind of forensic trace. Always prefer Linux as a host.</em>
<h4>1. Check that you have the required computer specification:</h4>
<p><b>Hardware requirements:</b></p>
<p>For optimal performance: 8 GB of RAM.</p>
<p>Processor: A quadcore, 64-bit x86-64 compatible.</p>
<p>Storage device: Minimum of 32 GB.</p>
<p>Edited because of:
<a href="https://forums.whonix.org/t/recommended-specs/9679">https://forums.whonix.org/t/recommended-specs/9679</a>
</p>
<b>How can I check my system's hardware?</b>
<p>Click the Start button and type "system information" then open it.</p>
<p>You can find most of the details you need on the first page, in the System
Summary node.</p>
<p>You can also expand each node in the left pane for additional information.</p>
<h4>2. Setting up the VirtualBox:</h4>
<b><em>What is a VirtualBox?</em></b>
<p>In short, VirtualBox is a tool developed by Oracle to allow running multiple
operating systems simultaneously. This allows easier software installations,
better testing, faster disaster recovery, and it significantly reduces
hardware and electricity costs.
<br>The complete introduction can be found here:
<br>
<a href="https://virtualbox.org/manual/ch01.html#virt-why-useful">virtualbox.org - Chapter 1. First Steps</a></p>
<br>
<b>How to install the VirtualBox?</b>
<p>You can install VirtualBox by downloading the executable file for your
operating system.
<br>The download page that can be found here:
<br>
<a href="https://virtualbox.org/wiki/Downloads">virtualbox.org - Downloads</a></p>
<h4>3. Setting up Tails OS:</h4>
<p>Running Tails in a virtual machine is easy. First, you need to download
an ISO (Optical Disc Image) with the latest Tails Operating System
(OS). This ISO image will be used to emulate inserting a CD into our
VirtualBox to set up our Tails OS machine.
<br>The Tails OS ISO image can be found here:
<br>
<a href="https://tails.boum.org/install/vm-download/index.en.html">tails.net - Downloads</a></p>
<h4>Running Tails in a virtual machine:</h4>
<b>Start VirtualBox, and follow the instructions below:</b>
<b>A) To create a new virtual machine:</b>
<ol>
<li>Choose <strong>Machine ▸ New</strong></li>
<li>In the <strong>Name and operating system screen</strong>, specify:
<ul>
<li>A name of your choice.</li>
<li>Type: <strong>Linux</strong>.</li>
<li>Version: <strong>Other Linux (64 bit)</strong>.</li>
<li>Click <strong>Next</strong>.</li>
</ul>
</li>
<li>In the <strong>Memory size</strong> screen:
<ul>
<li>Allocate at least 2048 MB of RAM.</li>
<li>Click <strong>Next</strong>.</li>
</ul>
</li>
<li>In the Hard drive screen:
<ul>
<li>Choose <strong>Do not add a virtual hard drive</strong>.</li>
<li>Click <strong>Create</strong>.</li>
<li>Click <em><strong>Continue</strong></em> in the warning dialog
about creating a virtual machine without a hard drive.</li>
</ul>
</li>
</ol>
<b>B) To configure the virtual machine to start from our ISO image:</b>
<ol>
<li>Select the new virtual machine in the left pane.</li>
<li>Choose <strong>Machine ▸ Settings</strong>....</li>
<li>Select <strong>System</strong> in the left pane.</li>
<li>In the <strong>Extended Features</strong> section of the <strong>Motherboard</strong>
tab, make sure that <strong>Enable I/O APIC</strong> is enabled.</li>
<li>Select <strong>Storage</strong> in the left pane.</li>
<li>Select <strong>Empty</strong> below <strong>Contoller IDE</strong>
in the Storage Tree selection list in the right pane.</li>
<li>Click on the <strong>CD</strong> icon on the right of the window and
select <strong>Choose a virtual CD/DVD disk file</strong>... to browse
for the ISO image you want to start Tails from.</li>
<li>Check the <strong>Live CD/DVD</strong> option.</li>
<li>Click <strong>OK</strong>.</li>
</ol>
<b>C) To start the new virtual machine:</b>
<ol>
<li>Select the virtual machine in the left pane.</li>
<li>Click <strong>Start</strong>.</li>
</ol>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>Attacks on Tor — Thirteen Years of Tor Attacks</b></summary>
<br>
<p>Attacks on Tor — Thirteen Years of Tor Attacks</p>
<a href="https://github.com/Attacks-on-Tor/Attacks-on-Tor">https://github.com/Attacks-on-Tor/Attacks-on-Tor</a>
<br>
<p>LightEater Demo: Stealing GPG keys/emails in Tails via remote firmware
infection (2015)</p>
<a href="https://youtube.com/watch?v=sNYsfUNegEA">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fyoutube.com%2Fwatch%3Fv%3DsNYsfUNegEA" alt="LightEater Demo: Stealing GPG keys/emails in Tails via remote firmware infection (2015)" title="LightEater Demo: Stealing GPG keys/emails in Tails via remote firmware infection (2015)"/>
</a>
<br>
<p>Binarly REsearch Team - Leaked Platform Key can be used to bypass Secure Boot on Linux (2024)</p>
<a href="https://www.youtube.com/watch?v=CveWt3gFQTE">
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DCveWt3gFQTE" alt="Binarly REsearch Team - Leaked Platform Key can be used to bypass Secure Boot on Linux (2024)" title=" Binarly REsearch Team - Leaked Platform Key can be used to bypass Secure Boot on Linux (2024)"/>
</a>
<hr>
<br>
</details>
<!--############################## -->
<details>
<summary><b>Dark Web Infographics</b></summary>
<br>
<p>The Dark Web - A Time Line</p>
<img src=".data/Dark_Web_-_A_Time_Line.jpeg" title="The Dark Web - A Time Line">
<sub>Credits: https://betanews.com/2020/03/13/happy-birthday-dark-web/</sub>
<p>Dark Web Markets (2017) - Europol</p>
<img src=".data/Dark_Web_Markets_-_Europol_2017.jpg" title="Dark Web Markets (2017) - Europol">
<p>Dark Web - Price Index 2022</p>
<img src=".data/Dark_Web_-_2022_Index_Full.jpg" title="Dark Web - Price Index 2022">
<p>Others: https://github.com/bibanon</p>
<hr>
<br>
</details>
<hr>
<!-- ############################################################ -->
<ul>
<li>
<h3>GENERAL</h3></li>
<ul>
<li>
<a href="facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion">Facebook Official</a>
<pre><code>facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion</code></pre>
</li>
<li>
<a href="http://https://docs.invidious.io/instances/.onion">Invidious (YouTube) (Check the active instances)</a>
<pre><code>https://docs.invidious.io/instances/</code></pre>
</li>
<li>
<a href="https://github.com/zedeus/nitter/wiki/Instances">Nitter (Check the active instances)</a>
<pre><code>https://github.com/zedeus/nitter/wiki/Instances</code></pre>
</li>
<li>
<a href="http://reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion">Reddit</a>
<pre><code>http://reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion</code></pre>
</li>
<li>
<a href="http://dreadytofatroptsdj6io7l3xptbet6onoyno2yv7jicoxknyazubrad.onion">Dread</a>
<pre><code>http://dreadytofatroptsdj6io7l3xptbet6onoyno2yv7jicoxknyazubrad.onion</code></pre>
</li>
<li>
<a href="http://libreeunomyly6ot7kspglmbd5cvlkogib6rozy43r2glatc6rmwauqd.onion">Libre Forum</a>
<pre><code>http://libreeunomyly6ot7kspglmbd5cvlkogib6rozy43r2glatc6rmwauqd.onion</code></pre>
</li>
<li>
<a href="https://incognite.io">Libre Forum (Check the active instances)</a>
<pre><code>https://incognite.io</code></pre>
</li>
<li>
<a href="http://endchancxfbnrfgauuxlztwlckytq7rgeo5v6pc2zd4nyqo3khfam4ad.onion/">Endchan</a>
<pre><code>http://endchancxfbnrfgauuxlztwlckytq7rgeo5v6pc2zd4nyqo3khfam4ad.onion/</code></pre>
</li>
<li>
<a href="http://ho2hua2hfduv6f7hcbzdj2e6qdn4szgyy2jjnx545v4z3epq7uyrscid.onion">Satanic Ceremony</a>
<pre><code>http://ho2hua2hfduv6f7hcbzdj2e6qdn4szgyy2jjnx545v4z3epq7uyrscid.onion</code></pre>
</li>
<li>
<a href="http://bible4u2lvhacg4b3to2e2veqpwmrc2c3tjf2wuuqiz332vlwmr4xbad.onion">Bible4u</a>
<pre><code>http://bible4u2lvhacg4b3to2e2veqpwmrc2c3tjf2wuuqiz332vlwmr4xbad.onion</code></pre>
</li>
<li>
<a href="http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion">CIA.gov</a>
<pre><code>http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion</code></pre>
</li>
<li>
<a href="http://bbzzzsvqcrqtki6umym6itiixfhni37ybtt7mkbjyxn2pgllzxf2qgyd.onion">Breaking Bad</a>
<pre><code>http://bbzzzsvqcrqtki6umym6itiixfhni37ybtt7mkbjyxn2pgllzxf2qgyd.onion</code></pre>
</li>
<li>
<a href="http://vvedndyt433kopnhv6vejxnut54y5752vpxshjaqmj7ftwiu6quiv2ad.onion">Psychonaut Wiki</a>
<pre><code>http://vvedndyt433kopnhv6vejxnut54y5752vpxshjaqmj7ftwiu6quiv2ad.onion</code></pre>
</li>
<li>
<a href="http://hacktowns3sba2xavxecm23aoocvzciaxirh3vekg2ovzdjgjxedfvqd.onion">HackTown</a>
<pre><code>http://hacktowns3sba2xavxecm23aoocvzciaxirh3vekg2ovzdjgjxedfvqd.onion</code></pre>
</li>
<li>
<a href="http://suprbaydvdcaynfo4dgdzgxb4zuso7rftlil5yg5kqjefnw4wq4ulcad.onion">SuprBay</a>
<pre><code>http://suprbaydvdcaynfo4dgdzgxb4zuso7rftlil5yg5kqjefnw4wq4ulcad.onion</code></pre>
</li>
<li>
<a href="http://xxtbwyb5z5bdvy2f6l2yquu5qilgkjeewno4qfknvb3lkg3nmoklitid.onion">Simply Translate</a>
<pre><code>http://xxtbwyb5z5bdvy2f6l2yquu5qilgkjeewno4qfknvb3lkg3nmoklitid.onion</code></pre>
</li>
<li>
<a href="http://7fc532c5lvbky6lxlt3gxnbj67gqmpzym2rowtekllgypyprbjxfiiad.onion">My Onion Bookmarks</a>
<pre><code>http://7fc532c5lvbky6lxlt3gxnbj67gqmpzym2rowtekllgypyprbjxfiiad.onion</code></pre>
</li>
<li>
<a href="http://afajj7x4zfl2d3fc2u7uzxp4iwf4r2kucr5on24xk2hwrssoj7yivhid.onion">Simple Bookmarks</a>
<pre><code>http://afajj7x4zfl2d3fc2u7uzxp4iwf4r2kucr5on24xk2hwrssoj7yivhid.onion</code></pre>
</li>
<li>
<a href="http://strongerw2ise74v3duebgsvug4mehyhlpa7f6kfwnas7zofs3kov7yd.onion">Stronghold Paste</a>
<pre><code>http://strongerw2ise74v3duebgsvug4mehyhlpa7f6kfwnas7zofs3kov7yd.onion</code></pre>
</li>
<li>
<a href="http://deepv2w7p33xa4pwxzwi2ps4j62gfxpyp44ezjbmpttxz3owlsp4ljid.onion">DeepPaste V3</a>
<pre><code>http://deepv2w7p33xa4pwxzwi2ps4j62gfxpyp44ezjbmpttxz3owlsp4ljid.onion</code></pre>
</li>
<li>
<a href="http://v3pastedc5jeqahtq77gvu3vz222bcqhlfubfunzjzqedg6jdqqlvgqd.onion">V3Paste</a>
<pre><code>http://v3pastedc5jeqahtq77gvu3vz222bcqhlfubfunzjzqedg6jdqqlvgqd.onion</code></pre>
</li>
<li>
<a href="http://torpastezr7464pevuvdjisbvaf4yhttp://suprbaydvdcaynfo4dgdzgxb4zuso7rftlil5yg5kqjefnw4wq4ulcad.onionqi4n7sgz7lkwgqwxznwy5duj4ad.onion">TorPaste</a>
<pre><code>http://torpastezr7464pevuvdjisbvaf4yqi4n7sgz7lkwgqwxznwy5duj4ad.onion</code></pre>
</li>
<li>
<a href="http://7eoz4h2nvw4zlr7gvlbutinqqpm546f5egswax54az6lt2u7e3t6d7yd.onion">Hidden Answers</a>
<pre><code>http://7eoz4h2nvw4zlr7gvlbutinqqpm546f5egswax54az6lt2u7e3t6d7yd.onion</code></pre>
</li>
<li>
<a href="http://deepa2kol4ur4wkzpmjf5rf7lvsflzisslnrnr2n7goaebav4j6w7zyd.onion">Deep Answers</a>
<pre><code>http://deepa2kol4ur4wkzpmjf5rf7lvsflzisslnrnr2n7goaebav4j6w7zyd.onion</code></pre>
</li>
</ul>
<li>
<h3>SEARCH ENGINES</h3></li>
<ul>
<li>
<a href="http://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion">DuckDuckGo</a>
<pre><code>http://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion</code></pre>
</li>
<li>
<a href="http://startpagel6srwcjlue4zgq3zevrujfaow726kjytqbbjyrswwmjzcqd.onion">Startpage</a>
<pre><code>http://startpagel6srwcjlue4zgq3zevrujfaow726kjytqbbjyrswwmjzcqd.onion</code></pre>
</li>
<li>
<a href="https://search.brave4u7jddbv7cyviptqjc7jusxh72uik7zt6adtckl5f4nwy2v72qd.onion">Brave Search</a>
<pre><code>https://search.brave4u7jddbv7cyviptqjc7jusxh72uik7zt6adtckl5f4nwy2v72qd.onion</code></pre>
</li>
<li>
<a href="http://metagerv65pwclop2rsfzg4jwowpavpwd6grhhlvdgsswvo6ii4akgyd.onion">Metager.org</a>
<pre><code>http://metagerv65pwclop2rsfzg4jwowpavpwd6grhhlvdgsswvo6ii4akgyd.onion</code></pre>
</li>
<li>
<a href="http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion">Ahmia.fi</a>
<pre><code>http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion</code></pre>
</li>
<li>
<a href="http://2fd6cemt4gmccflhm6imvdfvli3nf7zn6rfrwpsy7uhxrgbypvwf5fad.onion">ExcavaTOR</a>
<pre><code>http://2fd6cemt4gmccflhm6imvdfvli3nf7zn6rfrwpsy7uhxrgbypvwf5fad.onion</code></pre>
</li>
<li>
<a href="http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion">Haystak</a>
<pre><code>http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion</code></pre>
</li>
<li>
<a href="http://notevilmtxf25uw7tskqxj6njlpebyrmlrerfv5hc4tuq7c7hilbyiqd.onion">NotEvil Dark Web</a>
<pre><code>http://notevilmtxf25uw7tskqxj6njlpebyrmlrerfv5hc4tuq7c7hilbyiqd.onion</code></pre>
</li>
<li>
<a href="http://3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion">OnionLand Search</a>
<pre><code>http://3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion</code></pre>
</li>
<li>
<a href="http://kn3hl4xwon63tc6hpjrwza2npb7d4w5yhbzq7jjewpfzyhsd65tm6dad.onion">Onion Search</a>
<pre><code>http://kn3hl4xwon63tc6hpjrwza2npb7d4w5yhbzq7jjewpfzyhsd65tm6dad.onion</code></pre>
</li>
<li>
<a href="http://searxingux6na3djgdrcfwutafxmmagerhbieihsgu7sgmjee3u777yd.onion">SearX</a>
<pre><code>http://searxingux6na3djgdrcfwutafxmmagerhbieihsgu7sgmjee3u777yd.onion</code></pre>
</li>
<li>
<a href="http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion">Tor66</a>
<pre><code>http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion</code></pre>
</li>
<li>
<a href="http://torchdeedp3i2jigzjdmfpn5ttjhthh5wbmda2rr3jvqjg5p77c54dqd.onion">Torch</a>
<pre><code>http://torchdeedp3i2jigzjdmfpn5ttjhthh5wbmda2rr3jvqjg5p77c54dqd.onion</code></pre>
</li>
<li>
<a href="http://orealmvxooetglfeguv2vp65a3rig2baq2ljc7jxxs4hsqsrcemkxcad.onion">OurRealm</a>
<pre><code>http://orealmvxooetglfeguv2vp65a3rig2baq2ljc7jxxs4hsqsrcemkxcad.onion</code></pre>
</li>
<li>
<a href="http://e27slbec2ykiyo26gfuovaehuzsydffbit5nlxid53kigw3pvz6uosqd.onion">Sentor</a>
<pre><code>http://e27slbec2ykiyo26gfuovaehuzsydffbit5nlxid53kigw3pvz6uosqd.onion</code></pre>
</li>
<li>
<a href="http://spacednczzrstmwlrt2olozfyrxcnrn3seyz2t4nhigujx5yivfy23id.onion">Space</a>
<pre><code>http://spacednczzrstmwlrt2olozfyrxcnrn3seyz2t4nhigujx5yivfy23id.onion</code></pre>
</li>
<li>
<a href="http://krakenai2gmgwwqyo7bcklv2lzcvhe7cxzzva2xpygyax5f33oqnxpad.onion">Kraken</a>
<pre><code>http://krakenai2gmgwwqyo7bcklv2lzcvhe7cxzzva2xpygyax5f33oqnxpad.onion</code></pre>
</li>
<li>
<a href="http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion">Tor66</a>
<pre><code>http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion</code></pre>
</li>
<li>
<a href="http://xcprh4cjas33jnxgs3zhakof6mctilfxigwjcsevdfap7vtyj57lmjad.onion">TGS</a>
<pre><code>http://xcprh4cjas33jnxgs3zhakof6mctilfxigwjcsevdfap7vtyj57lmjad.onion</code></pre>
</li>
<li>
<a href="http://q3o3hdjbf6vwxdnpskyhxw7w7rnmnfhz2szbuala4q24x6csbp7adiad.onion">HST</a>
<pre><code>http://q3o3hdjbf6vwxdnpskyhxw7w7rnmnfhz2szbuala4q24x6csbp7adiad.onion</code></pre>
</li>
<li>
<a href="http://archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion">Archive.today</a>
<pre><code>http://archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion</code></pre>
</li>
<li>
<a href="http://torwhois2wo3cdwveznqlf2jz7ezm6icqrmnnr3fnez67vnyatqc65ad.onion">TorWhois</a>
<pre><code>http://torwhois2wo3cdwveznqlf2jz7ezm6icqrmnnr3fnez67vnyatqc65ad.onion</code></pre>
</li>
<li>
<a href="http://srcdemonm74icqjvejew6fprssuolyoc2usjdwflevbdpqoetw4x3ead.onion">Demon</a>
<pre><code>http://srcdemonm74icqjvejew6fprssuolyoc2usjdwflevbdpqoetw4x3ead.onion</code></pre>
</li>
<li>
<a href="http://findtorroveq5wdnipkaojfpqulxnkhblymc7aramjzajcvpptd4rjqd.onion">FindTor</a>
<pre><code>http://findtorroveq5wdnipkaojfpqulxnkhblymc7aramjzajcvpptd4rjqd.onion</code></pre>
</li>
<li>
<a href="http://tordexu73joywapk2txdr54jed4imqledpcvcuf75qsas2gwdgksvnyd.onion">Tordex</a>
<pre><code>http://tordexu73joywapk2txdr54jed4imqledpcvcuf75qsas2gwdgksvnyd.onion</code></pre>
</li>
<li>
<a href="http://5n4qdkw2wavc55peppyrelmb2rgsx7ohcb2tkxhub2gyfurxulfyd3id.onion">Tor Links</a>
<pre><code>http://5n4qdkw2wavc55peppyrelmb2rgsx7ohcb2tkxhub2gyfurxulfyd3id.onion</code></pre>
</li>
</ul>
<li>
<h3>SECURITY AND PRIVACY</h3></li>
<ul>
<li>
<a href="http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion">The Tor Project</a>
<pre><code>http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion</code></pre>
</li>
<li>
<a href="http://iykpqm7jiradoeezzkhj7c4b33g4hbgfwelht2evxxeicbpjy44c7ead.onion">Electronic Frontier Foundation (EFF)</a>
<pre><code>http://iykpqm7jiradoeezzkhj7c4b33g4hbgfwelht2evxxeicbpjy44c7ead.onion</code></pre>
</li>
<li>
<a href="http://y7yea4pmqqtznb33qiugvysyn2bob5v62e4pvoadoibrwkq3tsddjeyd.onion">Surveillance Self-Defense</a>
<pre><code>http://y7yea4pmqqtznb33qiugvysyn2bob5v62e4pvoadoibrwkq3tsddjeyd.onion</code></pre>
</li>
<li>
<a href="https://amnestyl337aduwuvpf57irfl54ggtnuera45ygcxzuftwxjvvmpuzqd.onion">Amnesty International</a>
<pre><code>https://amnestyl337aduwuvpf57irfl54ggtnuera45ygcxzuftwxjvvmpuzqd.onion</code></pre>
</li>
<li>
<a href="http://thgtoa27ujspeqxasrfvcf5aozqdczvgmwgorrmblh6jn4nino3spcqd.onion">The Hitchhiker’s Guide to Online Anonymity</a>
<pre><code>http://thgtoa27ujspeqxasrfvcf5aozqdczvgmwgorrmblh6jn4nino3spcqd.onion</code></pre>
</li>
<li>
<a href="http://darknetlidvrsli6iso7my54rjayjursyw637aypb6qambkoepmyq2yd.onion/post/the-hitchhiker-s-guide-to-pgp">The Hitchhiker's Guide to PGP</a>
<pre><code>http://darknetlidvrsli6iso7my54rjayjursyw637aypb6qambkoepmyq2yd.onion/post/the-hitchhiker-s-guide-to-pgp</code></pre>
</li>
<li>
<a href="http://biblemeowimkh3utujmhm6oh2oeb3ubjw2lpgeq3lahrfr2l6ev6zgyd.onion">DNM Bible</a>
<pre><code>http://biblemeowimkh3utujmhm6oh2oeb3ubjw2lpgeq3lahrfr2l6ev6zgyd.onion</code></pre>
</li>
<li>
<a href="http://xmrguide25ibknxgaray5rqksrclddxqku3ggdcnzg4ogdi5qkdkd2yd.onion">XMRGuide</a>
<pre><code>http://xmrguide25ibknxgaray5rqksrclddxqku3ggdcnzg4ogdi5qkdkd2yd.onion</code></pre>
</li>
<li>
<a href="http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion">CryptBB</a>
<pre><code>http://cryptbbtg65gibadeeo2awe3j7s6evg7eklserehqr4w4e2bis5tebid.onion</code></pre>
</li>
<li>
<a href="http://cr756sdj2ukmiid6io6wlp5clg7227af7ttqqnge2t357bwdgsr22did.onion">Skywalkers</a>
<pre><code>http://cr756sdj2ukmiid6io6wlp5clg7227af7ttqqnge2t357bwdgsr22did.onion</code></pre>
</li>
<li>
<a href="http://xoe4vn5uwdztif6goazfbmogh6wh5jc4up35bqdflu6bkdc5cas5vjqd.onion">Privacy Guides</a>
<pre><code>http://xoe4vn5uwdztif6goazfbmogh6wh5jc4up35bqdflu6bkdc5cas5vjqd.onion</code></pre>
</li>
<li>
<a href="http://darkfailenbsdla5mal2mxn2uz66od5vtzd5qozslagrfzachha3f3id.onion">Dark.fail's PGP Tool</a>
<pre><code>http://darkfailenbsdla5mal2mxn2uz66od5vtzd5qozslagrfzachha3f3id.onion</code></pre>
</li>
<li>
<a href="http://lxjacvxrozjlxd7pqced7dyefnbityrwqjosuuaqponlg3v7esifrzad.onion">Security in a box</a>
<pre><code>http://lxjacvxrozjlxd7pqced7dyefnbityrwqjosuuaqponlg3v7esifrzad.onion</code></pre>
</li>
<li>
<a href="http://5ekxbftvqg26oir5wle3p27ax3wksbxcecnm6oemju7bjra2pn26s3qd.onion">Debian</a>
<pre><code>http://5ekxbftvqg26oir5wle3p27ax3wksbxcecnm6oemju7bjra2pn26s3qd.onion</code></pre>
</li>
<li>
<a href="http://lkiw4tmbudbr43hbyhm636sarn73vuow77czzohdbqdpjuq3vdzvenyd.onion">Hardened BSD</a>
<pre><code>http://lkiw4tmbudbr43hbyhm636sarn73vuow77czzohdbqdpjuq3vdzvenyd.onion</code></pre>
</li>
<li>
<a href="http://hackthisjogneh42n5o7gbzrewxee3vyu6ex37ukyvdw6jm66npakiyd.onion">Hack This Site</a>
<pre><code>http://hackthisjogneh42n5o7gbzrewxee3vyu6ex37ukyvdw6jm66npakiyd.onion</code></pre>
</li>
<li>
<a href="http://qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion">Qubes OS</a>
<pre><code>http://qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion</code></pre>
</li>
<li>
<a href="http://dds6qkxpwdeubwucdiaord2xgbbeyds25rbsgr73tbfpqpt4a6vjwsyd.onion">Whonix OS</a>
<pre><code>http://dds6qkxpwdeubwucdiaord2xgbbeyds25rbsgr73tbfpqpt4a6vjwsyd.onion</code></pre>
</li>
<li>
<a href="http://guideeedvgbpkthetphncab5aqj7dp5t74y7vxsoonnvmaeamq74vuqd.onion">Tor Guide</a>
<pre><code>http://guideeedvgbpkthetphncab5aqj7dp5t74y7vxsoonnvmaeamq74vuqd.onion</code></pre>
</li>
<li>
<a href="http://g7ejphhubv5idbbu3hb3wawrs5adw7tkx7yjabnf65xtzztgg4hcsqqd.onion">DEF CON Forum</a>
<pre><code>http://g7ejphhubv5idbbu3hb3wawrs5adw7tkx7yjabnf65xtzztgg4hcsqqd.onion</code></pre>
</li>
<li>
<a href="http://jrw32khnmfehvdsvwdf34mywoqj5emvxh4mzbkls6jk2cb3thcgz6nid.onion">DEF CON Groups</a>
<pre><code>http://jrw32khnmfehvdsvwdf34mywoqj5emvxh4mzbkls6jk2cb3thcgz6nid.onion</code></pre>
</li>
<li>
<a href="http://m6rqq6kocsyugo2laitup5nn32bwm3lh677chuodjfmggczoafzwfcad.onion">DEF CON Media</a>
<pre><code>http://m6rqq6kocsyugo2laitup5nn32bwm3lh677chuodjfmggczoafzwfcad.onion</code></pre>
</li>
<li>
<a href="http://elfqv3zjfegus3bgg5d7pv62eqght4h6sl6yjjhe7kjpi2s56bzgk2yd.onion">Fake ID Generator</a>
<pre><code>http://elfqv3zjfegus3bgg5d7pv62eqght4h6sl6yjjhe7kjpi2s56bzgk2yd.onion</code></pre>
</li>
<li>
<a href="http://blkhatjxlrvc5aevqzz5t6kxldayog6jlx5h7glnu44euzongl4fh5ad.onion">Black Hat Chat</a>
<pre><code>http://blkhatjxlrvc5aevqzz5t6kxldayog6jlx5h7glnu44euzongl4fh5ad.onion</code></pre>
</li>
<li>
<a href="http://i3xi5qxvbrngh3g6o7czwjfxwjzigook7zxzjmgwg5b7xnjcn5hzciad.onion">Tor Specifications</a>
<pre><code>http://i3xi5qxvbrngh3g6o7czwjfxwjzigook7zxzjmgwg5b7xnjcn5hzciad.onion</code></pre>
</li>
<li>
<a href="http://t3qi4hdmvqo752lhyglhyb5ysoutggsdocmkxhuojfn62ntpcyydwmqd.onion">Tor Network Status</a>
<pre><code>http://t3qi4hdmvqo752lhyglhyb5ysoutggsdocmkxhuojfn62ntpcyydwmqd.onion</code></pre>
</li>
<li>
<a href="http://liqr2cbsjzxmpw6savgh274tuzl34x6cd56h7m7ceatnrokveffm66ad.onion">MAT2 Meta Data Removal</a>
<pre><code>http://liqr2cbsjzxmpw6savgh274tuzl34x6cd56h7m7ceatnrokveffm66ad.onion</code></pre>
</li>
<li>
<a href="http://52kuhjz3eohhd4rohxo3xuwetgm7rbdbzb7egzefubg6lu4zvmm4qdad.onion/check/check.php">Browser Check</a>
<pre><code>http://52kuhjz3eohhd4rohxo3xuwetgm7rbdbzb7egzefubg6lu4zvmm4qdad.onion/check/check.php</code></pre>
</li>
</ul>
<li>
<h3>VPN</h3></li>
<ul>
<li>
<a href="http://o54hon2e2vj6c7m3aqqu6uyece65by3vgoxxhlqlsvkmacw6a7m7kiad.onion">Mullvad</a>
<pre><code>http://o54hon2e2vj6c7m3aqqu6uyece65by3vgoxxhlqlsvkmacw6a7m7kiad.onion</code></pre>
</li>
<li>
<a href="http://stormwayszuh4juycoy4kwoww5gvcu2c4tdtpkup667pdwe4qenzwayd.onion">Cryptostorm VPN</a>
<pre><code>http://stormwayszuh4juycoy4kwoww5gvcu2c4tdtpkup667pdwe4qenzwayd.onion</code></pre>
</li>
<li>
<a href="http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion">Njalla VPN</a>
<pre><code>http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion</code></pre>
</li>
<li>
<a href="http://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion">AirVPN</a>
<pre><code>http://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion</code></pre>
</li>
<li>
<a href="http://tv54samlti22655ohq3oaswm64cwf7ulp6wzkjcvdla2hagqcu7uokid.onion/posts/2016-11-12-vpn-tor-not-net-gain">Using A VPN With Tor?</a>
<pre><code>http://tv54samlti22655ohq3oaswm64cwf7ulp6wzkjcvdla2hagqcu7uokid.onion/posts/2016-11-12-vpn-tor-not-net-gain</code></pre>
</li>
</ul>
<li>
<h3>COMUNICATION</h3></li>
<ul>
<li>
<a href="http://protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion">Protonmail</a>
<pre><code>http://protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion</code></pre>
</li>
<li>
<a href="http://pflujznptk5lmuf6xwadfqy6nffykdvahfbljh7liljailjbxrgvhfid.onion">Onion Mail</a>
<pre><code>http://pflujznptk5lmuf6xwadfqy6nffykdvahfbljh7liljailjbxrgvhfid.onion</code></pre>
</li>
<li>
<a href="https://onionshare.org">OnionShare (Clear Web)</a>
<pre><code>https://onionshare.org</code></pre>
</li>
<li>
<a href="http://lldan5gahapx5k7iafb3s4ikijc4ni7gx5iywdflkba5y2ezyg6sjgyd.onion">OnionShare (Suspicious!)</a>
<pre><code>http://lldan5gahapx5k7iafb3s4ikijc4ni7gx5iywdflkba5y2ezyg6sjgyd.onion</code></pre>
</li>
<li>
<a href="http://sdolvtfhatvsysc6l34d65ymdwxcujausv7k5jk4cy5ttzhjoi6fzvyd.onion">SecureDrop</a>
<pre><code>http://sdolvtfhatvsysc6l34d65ymdwxcujausv7k5jk4cy5ttzhjoi6fzvyd.onion</code></pre>
</li>
<li>
<a href="http://4tdb2oju6nrrp77en6opmyfucvycs22y5ohuizfgjvbyjqjovltooyyd.onion">Tempsend</a>
<pre><code>http://4tdb2oju6nrrp77en6opmyfucvycs22y5ohuizfgjvbyjqjovltooyyd.onion</code></pre>
</li>
<li>
<a href="http://bcloudwenjxgcxjh6uheyt72a5isimzgg4kv5u74jb2s22y3hzpwh6id.onion">BlackCloud</a>
<pre><code>http://bcloudwenjxgcxjh6uheyt72a5isimzgg4kv5u74jb2s22y3hzpwh6id.onion</code></pre>
</li>
<li>
<a href="http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion">Riseup</a>
<pre><code>http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion</code></pre>
</li>
<li>
<a href="http://hhldo3tnt5solzj2bwfvh7xm4slk2forpjwjyemhcfrlob5gq75gioid.onion/en/index.html">FSF Email Self-Defense</a>
<pre><code>http://hhldo3tnt5solzj2bwfvh7xm4slk2forpjwjyemhcfrlob5gq75gioid.onion/en/index.html</code></pre>
</li>
<li>
<a href="http://dumpliwoard5qsrrsroni7bdiishealhky4snigbzfmzcquwo3kml4id.onion">dump.li</a>
<pre><code>http://dumpliwoard5qsrrsroni7bdiishealhky4snigbzfmzcquwo3kml4id.onion</code></pre>
</li>
<li>
<a href="http://trebzwp2nyrsq6urxkeif7iz5vpf3ppnlzvy6xdxwomgebx2vpczzsqd.onion">Pasta</a>
<pre><code>http://trebzwp2nyrsq6urxkeif7iz5vpf3ppnlzvy6xdxwomgebx2vpczzsqd.onion</code></pre>
</li>
<li>
<a href="http://snippetwtaasz6cid2he6vxcuwu3phck5uumidsbamkgmq3cuuydxiyd.onion">snippet.host</a>
<pre><code>http://snippetwtaasz6cid2he6vxcuwu3phck5uumidsbamkgmq3cuuydxiyd.onion</code></pre>
</li>
<li>
<a href="http://ppux65b6us3tk7b4devz5xivifj2ij7ah3xjltzf6bwuxdmchxlwduad.onion">Paste-Link</a>
<pre><code>http://ppux65b6us3tk7b4devz5xivifj2ij7ah3xjltzf6bwuxdmchxlwduad.onion</code></pre>
</li>
<li>
<a href="http://tgmqry5eeyaojen77lm6zigwcri5uq5dh5alyfgtuyghoz7nxjjh3vyd.onion">Pastly</a>
<pre><code>http://tgmqry5eeyaojen77lm6zigwcri5uq5dh5alyfgtuyghoz7nxjjh3vyd.onion</code></pre>
</li>
<li>
<a href="http://privatemijde3bjm5p6rmlraohv7742natbaqngyoqg3wobtpseos4qd.onion">private Note (RU)</a>
<pre><code>http://privatemijde3bjm5p6rmlraohv7742natbaqngyoqg3wobtpseos4qd.onion</code></pre>
</li>
<li>