-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
resources.html
2189 lines (2186 loc) · 95.6 KB
/
resources.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" prefix="og: https://ogp.me/ns#">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#000">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta property="og:image" content="/assets/preview/resources.png"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://techlore.tech/resources.html"/>
<meta property="og:title" content="Techlore: Privacy Resources & Recommendations"/>
<meta property="og:description" content="Privacy & security tools, resources, and recommendations to keep you safe."/>
<link rel="stylesheet" href="assets/css/style.css?t=129" type="text/css">
<title> Techlore | Privacy Resources & Recommendations </title>
<meta name="title" content="Techlore: Privacy Resources & Recommendations">
<meta name="description"
content="Privacy & security tools, resources, and recommendations to keep you safe."/>
<meta itemprop="name" content=" Techlore | Resources ">
<meta itemprop="description"
content="Privacy & security tools, resources, and recommendations to keep you safe.">
<meta itemprop="image" content="./assets/svg/logo_v2.svg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content=" Techlore | Privacy Resources & Recommendations ">
<meta name="twitter:description"
content="Privacy & security tools, resources, and recommendations to keep you safe.">
<meta name="twitter:image" content="./assets/svg/logo_v2.svg">
<base target="_blank">
<style>
body {
background-image: linear-gradient(to right, #2C5364, #203A43, #0F2027);
}
main i {
border-radius: 50%;
height: 30px;
width: 30px;
padding: 5px;
display: inline-flex;
justify-content: center;
align-items: center;
vertical-align: middle;
}
main i.right {
float: right;
}
main img {
max-height: 18px;
}
main ul {
list-style: none;
padding: 0;
}
main a {
color: #fff;
}
main li {
padding: 10px;
margin: 0;
margin-bottom: 5px;
background: #262626;
border-radius: .3rem;
}
.card>div {
text-align: center;
}
.ytp-title {
display: none !important;
}
</style>
<noscript>
<style>
[class*=_aos],
._aos {
opacity: 1 !important;
transform: translate3d(0px, 0px, 0px) !important;
}
</style>
</noscript>
</head>
<body id="support">
<nav>
<input type="checkbox" id="menu-btn"/>
<label for="menu-btn"><span></span></label>
<ul>
<li><a target="_self" href="./index.html">Home</a></li>
<li><a target="_self" href="./about.html">About</a></li>
<li><a target="_self" href="./videos.html"> Videos </a></li>
<li><a target="_self" href="./goincognito.html">Go Incognito</a></li>
<li><a target="_self" href="https://discuss.techlore.tech/">Forum</a></li>
<li><a target="_self" href="https://blog.techlore.tech"> Blog </a></li>
<li><a target="_self" href="./resources.html">Resources</a></li>
<li><a target="_self" href="./support.html">Support Us</a></li>
<li class="social-cnt">
<div><a href="https://github.com/techlore" target="_blank" rel="me"><img alt="github"
src="assets/svg/github.svg"></a>
</div>
<div><a href="https://www.patreon.com/techlore" target="_blank" rel="me"><img alt="patreon"
src="assets/svg/patreon.svg"></a>
</div>
<div><a href="https://social.lol/@techlore" target="_blank" rel="me"><img alt="mastodon"
src="assets/svg/mastodon.svg"></a>
</div>
<div><a href="https://discuss.techlore.tech/t/signal-usernames-are-here-join-our-signal-group-techlore/7640" target="_blank" rel="me"><img alt="signal"
src="assets/logos/signal.svg"></a>
</div>
<div><a href="./rss.html" target="_self" rel="me"><img alt="RSS"
src="assets/svg/rss.svg"></a>
</div>
</li>
</ul>
</nav>
<svg viewBox="0 0 120 20" class="wavet">
<path class="wave"
d="M 0 0 v 6 C 30 6 30 10 60 10 C 91 10 90 6 120 6 C 150 6 150 10 180 10 C 210 10 210 6 240 6 v -6 h -240 z" />
</svg>
<main class="_pt0">
<h1> Privacy Resources 🕵️</h1>
<div class="head-content">
Techlore's Privacy & Security recommendations based on our strict <a href="https://discuss.techlore.tech/pub/criteria" target="blank" class="URL_link">criteria. </a> For further assistance, we suggest our <a href="./goincognito.html" target="blank" class="URL_link">Go Incognito</a> course and our <a href="./coaching.html" target="blank" class="URL_link"> coaching.</a> There are external resources at the bottom for more recommendations.<br>
</div>
<h2>Techlore Tools ⚒️</h2>
<div class="grid _centered">
<div class="col-3 ">
<div class="card _bg-black-t _centered">
<h3>SPA Quiz</h3>
<div class="links">
<a href="./spa.html">Visit </a>
</div>
</div>
</div>
<div class="col-3">
<div class="card _bg-black-t _centered">
<h3>VPN Toolkit</h3>
<div class="links"><a href="./vpn.html"> Visit </a></div>
</div>
</div>
<div class="col-3">
<div class="card _bg-black-t _centered">
<h3>Plexus</h3>
<div class="links">
<a href="https://plexus.techlore.tech">Visit </a>
</div>
</div>
</div>
</div>
<h2>Techlore Guides 📚</h2>
<div class="_bg-black-t _radius _centered">
<div class="row">
<div class="_g-center">
<iframe title="Go Incognito" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/Y19RFmOxfVM" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<iframe title="Become Anonymous Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/a1i-3xwcSGA" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="_g-center">
<iframe title="Threat Model Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/DHZRhboZhfI" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<iframe title="Windows Privacy and Security Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/vNRics7tlqw" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div>
<iframe title="MacOS Privacy and Security Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/lFx5icuE6Io" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<iframe title="Android Privacy and Security Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/dMWEym0KPcA" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div>
<iframe title="iOS Privacy and Security Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/d2bJVKcIEg0" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="_g-center">
<iframe title="Linux Privacy and Security Guide" width="300" height="169" data-src="https://www.youtube-nocookie.com/embed/Sa0KqbpLye4" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<i style="background:#000">
<img src="./assets/logos/aflink2.svg" alt="affiliate-icon">
</i> Affiliate Link: Some services link to their official site, with a separate affiliate link if you choose to
support Techlore. View our strict requirements <a href="https://discuss.techlore.tech/pub/sponsors-affiliates"
target="blank" class="URL_link">here.</a> To view all affiliates, visit <a href="./affiliates.html" target="blank" class="URL_link">here.</a><br><br>
<b>★</b> marks a favorite. They don't represent every threat model and shouldn't be over-analyzed.<br><br><hr>
<h2>Software 💾</h2>
<div class="grid _np _bg-black-t _ch">
<div class="col-4">
<div class="card">
<div id="desktop-browsers">
<a href="#desktop-browsers"><u>Desktop Web Browsers</u></a>
</div>
<ul>
<a href="https://www.torproject.org/">
<li>
<i style="background:#7E4798">
<img src="./assets/logos/torbrowser.svg" alt="tor"></i>
<div class="tooltip">
Tor Browser ★
<div class="top">The Tor Browser is one of the safest browsing experiences by prioritizing anonymity & freedom of information above all else. It's one of the most effective and accessible anonymity tools.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://mullvad.net/browser">
<li>
<i style="background:#192E45">
<img src="./assets/logos/mullvad2.svg" alt="mullvad browser"></i>
<div class="tooltip">
Mullvad Browser ★
<div class="top">Mullvad Browser offers a fantastic middle-ground between the strong protections of a hardened Firefox, and the advantages of Tor Browser in a central place.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://brave.com/">
<li><i style="background:#FB542B">
<img src="./assets/logos/brave.svg" alt="brave"></i>
<div class="tooltip">
Brave ★
<div class="top">
Brave attempts to offer a familiar browser experience with privacy & security by default. Brave does many neat things for users out-of-the-box, but a possible annoyance is the cryptocurrency features. (Can be disabled)<br><br>
<ul>
<li>Open Source</li>
<li>Chromium</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://firefox.com">
<li><i style="background:#FF7139">
<img src="./assets/logos/firefox.svg" alt="firefox"></i>
<div class="tooltip">
Firefox
<div class="top">
Firefox doesn't have the best defaults, reserving maximum privacy & security through hardening the browser. An attractive reason to use Firefox is it's an alternative to the Chromium monopoly.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://librewolf.net/">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/librewolf.svg" alt="Librewolf"></i>
<div class="tooltip">
LibreWolf
<div class="top">
LibreWolf tackles most Firefox hardening out-of-the-box & does a decent job of maintaining security updates. Be aware that using forks of projects come with concerns regarding trusting a new party, in addition to trusting them to maintain security updates.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://youtu.be/F7-bW2y6lcI">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Firefox Hardening</li>
</a>
<a href="https://privacytests.org/">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/privacytests.svg" alt="PrivacyTests"></i> PrivacyTests</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="android-browsers">
<a href="#android-browsers"><u>Android Web Browsers</u></a>
</div>
<ul>
<a href="https://www.torproject.org/download/#android">
<li><i style="background:#7E4798">
<img src="./assets/logos/torbrowser.svg" alt="tor">
</i>
<div class="tooltip">
Tor Browser ★
<div class="top">The Tor Browser is one of the safest browsing experiences by prioritizing anonymity & freedom of information above all else. It's one of the most effective and accessible anonymity tools.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://brave.com/">
<li><i style="background:#FB542B">
<img src="./assets/logos/brave.svg" alt="brave"></i>
<div class="tooltip">
Brave ★
<div class="top">
Brave attempts to offer a familiar browser experience with privacy & security by default. Brave does many neat things for users out-of-the-box, but a possible annoyance is the cryptocurrency features. (Can be disabled)<br><br>
<ul>
<li>Open Source</li>
<li>Chromium</li>
</ul>
</div>
</div></li>
</a>
<a href="https://firefox.com">
<li><i style="background:#FF7139">
<img src="./assets/logos/firefox.svg" alt="firefox"></i>
<div class="tooltip">
Firefox/Focus ★
<div class="top">
Firefox doesn't have the best defaults, reserving maximum privacy & security through hardening the browser. (Limited on mobile) An attractive reason to use Firefox is it's an alternative to the Chromium monopoly.<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://f-droid.org/en/packages/us.spotco.fennec_dos/">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/mull.svg" alt="Mull"></i>
<div class="tooltip">
Mull
<div class="top">
Mull is the closest thing to a pre-hardened Firefox on Android. It brings many features from the Tor Uplift Project, the arkenfox project, & more! It is recommended to install 'uBlock Origin'.
<br><br>
<ul>
<li>Open Source</li>
<li>Firefox</li>
</ul>
</div>
</div></li>
</a>
<a href="https://github.com/uazo/cromite">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/cromite.svg" alt="Cromite"></i>
<div class="tooltip">
Cromite
<div class="top">
Cromite is a Chromium fork based on Bromite with built-in support for ad blocking and an eye for privacy.
<br><br>
<ul>
<li>Open Source</li>
<li>Chromium</li>
</ul>
</div>
</div></li>
</a>
<a href="https://youtube.com/watch?v=s6jM5-d-jXc">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Choosing A Browser</li>
</a>
<a href="https://privacytests.org/android.html">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/privacytests.svg" alt="PrivacyTests"></i> PrivacyTests</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="ios-browsers">
<a href="#ios-browsers"><u>iOS Web Browsers</u></a>
</div>
<ul>
<a href="https://onionbrowser.com">
<li><i style="background:#7E4798">
<img src="./assets/logos/tor.svg" alt="tor"></i>
<div class="tooltip">
Onion Browser ★
<div class="top">
Onion Browser is an unofficial Tor Browser. Due to iOS limitations, it should not be considered as safe as the Tor Browser Project, though it still offers users a layer of anonymity.<br><br>
<ul>
<li>Open Source</li>
<li>WebKit</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://brave.com/">
<li><i style="background:#FB542B">
<img src="./assets/logos/brave.svg" alt="brave"></i>
<div class="tooltip">
Brave ★
<div class="top">
Brave attempts to offer a familiar browser experience with privacy & security by default. Brave does many neat things for users out-of-the-box, but a possible annoyance is the cryptocurrency features. (Can be disabled)<br><br>
<ul>
<li>Open Source</li>
<li>WebKit</li>
</ul>
</div>
</div> </li>
</a>
<a href="https://firefox.com">
<li><i style="background:#FF7139">
<img src="./assets/logos/firefox.svg" alt="firefox"></i>
<div class="tooltip">
Firefox/Focus ★
<div class="top">
Firefox doesn't have the best defaults, but it's making progress to improve the situation. The privacy & security offered is maximized through hardening. (Significantly limited on iOS)<br><br>
<ul>
<li>Open Source</li>
<li>Webkit</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.apple.com/safari/">
<li><i style="background:#292929">
<img src="./assets/logos/safari.svg" alt="safari"></i>
<div class="tooltip">
Safari
<div class="top">
Apple's Safari offers users in the Apple ecosystem a moderately safe default browser with basic privacy & security precautions out-of-the-box. Consider using AdGuard for further protections.<br><br>
<ul>
<li>Proprietary</li>
<li>WebKit</li>
</ul>
</div>
</div></li>
</a>
<a href="https://adguard.com/en/adguard-ios/overview.html">
<li><i style="background:#ffffff">
<img src="./assets/logos/adguard.svg" alt="adguard"></i>
<div class="tooltip">
AdGuard
<div class="top">
For those using Safari, AdGuard is a great option to block ads, trackers, phishing, custom DNS, and more.<br><br>
<ul>
<li>Open Source</li>
</ul>
</div>
</div></li>
</a>
<a href="https://youtube.com/watch?v=s6jM5-d-jXc">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Choosing A Browser</li>
</a>
<a href="https://privacytests.org/ios.html">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/privacytests.svg" alt="PrivacyTests"></i> PrivacyTests</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="password-managers">
<a href="#password-managers"><u>Password Managers</u></a>
</div>
<ul>
<a href="https://keepass.info/">
<li><i style="background:#6CAC4D">
<img src="./assets/logos/keepass.svg" alt="keepass"></i>
<div class="tooltip">
KeePass ★
<div class="top">
KeePass is a secure & customizable password manager, but it requires work to function as conveniently as some users may expect.<br><br>
<ul>
<li>Open Source</li>
<li>Free</li>
</ul>
</div>
</div></li>
</a>
<a href="https://bitwarden.com/">
<li><i style="background:#175DDC">
<img src="./assets/logos/bitwarden.svg" alt="bitwarden"></i>
<div class="tooltip">
Bitwarden ★
<div class="top">
Bitwarden is a trusted, cloud-based option with zero-knowledge encryption to keep you safe. They offer an attractive middle-ground for password management, as well as the option for self-hosting.<br><br>
<ul>
<li>Open Source</li>
<li>Free Tier</li>
</ul>
</div>
</div></li>
</a>
<a href="https://proton.me/pass">
<li><i style="background:#6d49ff">
<img src="./assets/logos/protonpass.svg" alt="protonpass"></i>
<div class="tooltip">
Proton Pass ★
<div class="top">
Proton Pass is a password manager integrated with the Proton ecosystem. While currently limited in functionality, it's a decent option for those who need a secure option within an already existing ecosystem. Its built-in Email aliasing is an attracting feature.<br><br>
<ul>
<li>Open Source</li>
<li>Free Tier</li>
</ul>
</div>
</div><a href="https://go.getproton.me/SH12Q">
<i style="background:#000" class="right">
<img src="./assets/logos/aflink2.svg" alt="proton-affiliate">
</i>
</a></li>
</a>
<a href="https://1password.com/">
<li><i style="background:#363b3f">
<img src="./assets/logos/1p.svg" alt="1password"></i>
<div class="tooltip">
1Password
<div class="top">
1Password is an option for users who aren't happy with other offerings. It is similar to most 'mainstream' cloud-based managers, while having an excellent privacy & security record.<br><br>
<ul>
<li>Proprietary</li>
<li>Paid</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.youtube.com/watch?v=jZr4u5nEZP4">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Go Incognito 3.4</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="keepass">
<a href="#keepass"><u>KeePass Clients</u></a>
</div>
<ul>
<a href="https://keepassxc.org/">
<li><i style="background:#7bab42">
<img src="./assets/logos/keepassxc.svg" alt="keepassXC"></i>
<div class="tooltip">
KeePassXC ★
<div class="top">
KeePassXC is a modern, secure, & customizable KeePass client available on all major desktop operating systems with active development.<br><br>
<ul>
<li>Open Source</li>
<li>Free</li>
<li>Windows & MacOS & Linux</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.keepassdx.com/">
<li><i style="background:#44a047">
<img src="./assets/logos/keepassdx.svg" alt="keepassDX"></i>
<div class="tooltip">
KeePassDX ★
<div class="top">
KeePassDX is a KeePass client for Android available on F-Droid and the Google Play Store with a modern interface, active development, and strong trust in the community.<br><br>
<ul>
<li>Open Source</li>
<li>Free</li>
<li>Android</li>
</ul>
</div>
</div></li>
</a>
<a href="https://strongboxsafe.com/">
<li><i style="background:#1446b0">
<img src="./assets/logos/strongbox.svg" alt="strongbox"></i>
<div class="tooltip">
Strongbox ★
<div class="top">
Strongbox is a beautiful KeePass client that integrates well with iOS & MacOS devices, even offering the option for E2EE syncing via iCloud for those using ADP.<br><br>
<ul>
<li>Open Source</li>
<li>Free Tier</li>
<li>iOS & MacOS</li>
</ul>
</div>
</div></li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="totp">
<a href="#totp"><u>TOTP 2FA</u></a>
</div>
<ul>
<a href="https://getaegis.app">
<li><i style="background:#fff">
<img src="./assets/logos/aegis.svg" alt="aegis"></i>
<div class="tooltip">
Aegis (Android) ★
<div class="top">
Aegis is one of the most polished & simple TOTP services for Android.<br><br>
<ul>
<li>Open Source</li>
<li>Free</li>
</ul>
</div>
</div></li>
</a>
<a href="https://github.com/ente-io/ente/blob/main/auth/README.md">
<li><i style="background:#fff">
<img src="./assets/logos/ente-auth.svg" alt="ente auth"></i>
<div class="tooltip">
Ente Auth ★
<div class="top">
Ente's 2FA app. A cross platform TOTP app with secure online backups.<br><br>
<ul>
<li>Open Source</li>
<li>Free</li>
<li>iOS & Android & Web</li>
</ul>
</div>
</div></li>
</a>
<a href="https://youtu.be/iXSyxm9jmmo">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> TOTP & 2FA Guide</li>
</a>
<a href="https://2fa.directory/">
<li><i style="background:#ffffff">
<img src="./assets/logos/2fad.svg" alt="2FA Directory"></i>
<div class="tooltip">
2FA Directory
</div></li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="encryption">
<a href="#encryption"><u>Encryption</u></a>
</div>
<ul>
<a href="https://www.veracrypt.fr">
<li><i style="background:#08ABD8">
<img src="./assets/logos/veracrypt.svg" alt="veracrypt"></i>
<div class="tooltip">
Veracrypt ★
<div class="top">
Veracrypt offers users encrypted volumes, and on some operating systems full disk encryption. It is a great option for those needing maximum security.<br><br>
<ul>
<li>Open Source</li>
</ul>
</div>
</div></li>
</a>
<a href="https://gnupg.org/">
<li><i style="background:#0093DD">
<img src="./assets/logos/gnuprivacyguard.svg" alt="gnuprivacyguard"></i>
<div class="tooltip">
GNU Privacy Guard
<div class="top">
GnuPG offers flexible encryption options across different mediums for users needing a more versatile option, at the cost of generally being more advanced.<br><br>
<ul>
<li>Open Source</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://www.7-zip.org/">
<li><i style="background:#fff">
<img src="./assets/logos/7zip.svg" alt="7zip"></i>
<div class="tooltip">
7-Zip
<div class="top">
7-Zip is an archiving tool with basic file encryption options. It is not as robust as the other options and should be used with caution for sensitive tasks.<br><br>
<ul>
<li>Open Source</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.youtube.com/watch?v=I1nj05n5lL4">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Go Incognito 3.14</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="firewalls">
<a href="#firewalls"><u>Firewalls</u></a>
</div>
<ul>
<a href="https://safing.io/">
<li><i style="background:#000000">
<img src="./assets/logos/portmaster.svg" alt="Portmaster"></i>
<div class="tooltip">
Portmaster ★
<div class="top">
Powerful (& beautiful) firewall program for Windows & Linux to give you finer control over what your device connects to.<br><br>
<ul>
<li>Open Source</li>
<li>Windows & Linux</li>
</ul>
</div>
</div></li>
</a>
<a href="https://objective-see.org/products/lulu.html">
<li><i style="background:#FFFFFF">
<img src="./assets/logos/lulu.svg" alt="LuLu"></i>
<div class="tooltip">
LuLu ★
<div class="top">
Firewall program for MacOS to give you finer control over what your device connects to. <br><br>
<ul>
<li>Open Source</li>
<li>MacOS</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://netguard.me/">
<li><i style="background:#333333">
<img src="./assets/logos/netguard.svg" alt="NetGuard"></i>
<div class="tooltip">
NetGuard
<div class="top">
Firewall program for Android (no root required) to give you finer control over what your device connects to. Warning: NetGuard by default takes the place of a VPN on Android.<br><br>
<ul>
<li>Open Source</li>
<li>Android</li>
</ul>
</div>
</div></li>
</a>
<a href="https://youtu.be/E8cTRhGtmcM">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Portmaster Review</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="app-stores">
<a href="#app-stores"><u>Applications</u></a>
</div>
<ul>
<a href="https://f-droid.org/">
<li><i style="background:#ecf0f1">
<img src="./assets/logos/fdroid.svg" alt="fdroid"></i>
<div class="tooltip">
F-Droid ★
<div class="top">
F-Droid is the go-to FOSS app store for all Android devices.<br><br>
<ul>
<li>Open Source</li>
<li>Android</li>
</ul>
</div>
</div></li>
</a>
<a href="https://auroraoss.com/">
<li><i style="background:#6B62FF">
<img src="./assets/logos/aurora.svg" alt="aurora"></i>
<div class="tooltip">
Aurora Store ★
<div class="top">
Aurora Store allows users to download apps directly from the Google Play Store without a Google Account safely.<br><br>
<ul>
<li>Open Source</li>
<li>Android</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://exodus-privacy.eu.org/">
<li><i style="background:#684972">
<img src="./assets/logos/exodus.svg" alt="exodus"></i>
<div class="tooltip">
Exodus Privacy ★
<div class="top">
Analyzes privacy concerns in Android applications. Many iOS applications will use similar trackers, so this is a useful tool to check trackers for applications before downloading.<br><br>
<ul>
<li>Open Source</li>
<li>Android</li>
</ul>
</div>
</div>
</li>
</a>
<a href="https://altstore.io/">
<li><i style="background:#358389">
<img src="./assets/logos/altstore.svg" alt="altstore"></i>
<div class="tooltip">
AltStore
<div class="top">
AltStore allows iOS users to install IPA files (apps) to their device without the App Store. Apple's restrictions, however, make this a generally limited experience.<br><br>
<ul>
<li>Open Source</li>
<li>iOS</li>
</ul>
</div>
</div></li>
</a>
</ul>
</div>
</div>
</div>
<h2>Operating Systems 💻</h2>
<div class="grid _np _bg-black-t _ch">
<div class="col-4">
<div class="card">
<div id="desktop-OS">
<a href="#desktop-OS"><u>Desktop</u></a>
</div>
<ul>
<a href="https://www.qubes-os.org/">
<li><i style="background:#3874d8">
<img src="./assets/logos/qubes.svg" alt="qubes">
</i>
<div class="tooltip">
QubesOS ★
<div class="top">
Qubes separates programs & operating systems into secure environments for maximum safety. It can be slower and may have compatibility issues with certain hardware.<br><br>
<ul>
<li>Open Source</li>
<li>Xen</li>
<li>Advanced</li>
</ul>
</div>
</div></li>
</a>
<a href="https://fedoraproject.org/">
<li><i style="background:#294172">
<img src="./assets/logos/fedora.svg" alt="fedora">
</i>
<div class="tooltip">
Fedora ★
<div class="top">
Fedora has strong out-of-the-box privacy & security practices, all backed by a trustworty and commited team.<br><br>
<ul>
<li>Open Source</li>
<li>Linux</li>
<li>Moderate</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.archlinux.org/">
<li><i style="background:#1793D1">
<img src="./assets/logos/archlinux.svg" alt="arch">
</i>
<div class="tooltip">
Arch
<div class="top">
Arch offers bleeding-edge updates with a more configurable option for users. Many looking to harden Linux themselves enjoy the flexibility offered by Arch.<br><br>
<ul>
<li>Open Source</li>
<li>Linux</li>
<li>Advanced</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.debian.org">
<li><i style="background:#C70737">
<img src="./assets/logos/debian.svg" alt="debian">
</i>
<div class="tooltip">
Debian
<div class="top">
Debian offers stability above all else. While updates are generally slower, Debian still pushes frequent security updates.<br><br>
<ul>
<li>Open Source</li>
<li>Linux</li>
<li>Moderate</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.apple.com/macos/what-is/">
<li><i style="background: #292929;">
<img src="./assets/logos/macos.svg" alt="macos">
</i>
<div class="tooltip">
MacOS ★
<div class="top">
MacOS can be a reasonably private & secure OS for many threat models. Despite being proprietary, it offers strong protection and is a great alternative to Windows. Please refer to the device guides at the top of this page for more details.<br><br>
<ul>
<li>Proprietary</li>
<li>Apple MacOS</li>
<li>Simple</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.youtube.com/watch?v=0wk_GlCtWW4">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Go Incognito 4.2</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="expendable-OS">
<a href="#expendable-OS"><u>Expendable/LiveOS</u></a>
</div>
<ul>
<a href="https://www.whonix.org/">
<li><i style="background:#5AB4E1">
<img src="./assets/logos/whonix.svg" alt="whonix"></i>
<div class="tooltip">
Whonix ★
<div class="top">
Whonix offers both a virtual and live environment with a goal of anonymity. All activies are routed through Tor with strong privacy & security precautions.<br><br>
<ul>
<li>Open Source</li>
<li>Virtual Machine</li>
<li>LiveOS</li>
</ul>
</div>
</div></li>
</a>
<a href="https://tails.net/">
<li><i style="background:#56347C">
<img src="./assets/logos/tails.svg" alt="tails"></i>
<div class="tooltip">
TailsOS
<div class="top">
TailsOS offers a Tor-routed live environment for privacy & anonymity.<br><br>
<ul>
<li>Open Source</li>
<li>LiveOS</li>
</ul>
</div>
</div></li>
</a>
<a href="https://www.youtube.com/watch?v=WptwYrSr8ag">
<li><i style="background:#FF0000">
<img src="./assets/logos/youtube.svg" alt="youtube"></i> Go Incognito 4.4</li>
</a>
</ul>
</div>
</div>
<div class="col-4">
<div class="card">
<div id="android">
<a href="#android"><u>Android</u></a>
</div>
<ul>
<a href="https://calyxos.org/">
<li><i style="background:#9BCC01">
<img src="./assets/logos/calyxos.svg" alt="calyxos">
</i>
<div class="tooltip">
CalyxOS ★
<div class="top">
CalyxOS maintains stock security, while balancing additional privacy & security features with usability.<br><br>
<ul>
<li>Open Source</li>
<li>Limited Devices</li>
</ul>
</div>
</div></li>
</a>
<a href="https://divestos.org/">
<li><i style="background:#000000">
<img src="./assets/logos/divest.svg" alt="divest"></i>
<div class="tooltip">
DivestOS
<div class="top">
DivestOS attempts to fix some security issues with LineageOS (like bringing verified boot to some devices) while maintaing large device compatability.<br><br>
<ul>
<li>Open Source</li>
<li>Many Devices</li>
</ul>
</div>
</div></li>
</a>
<a href="https://lineageos.org/">
<li><i style="background:#167C80">
<img src="./assets/logos/lineageos.svg" alt="lineage"></i>
<div class="tooltip">
LineageOS
<div class="top">
LineageOS has lower security than stock, but it does attempt to improve privacy & transparency. Users should consider pros/cons before using LineageOS over stock.<br><br>
<ul>
<li>Open Source</li>