forked from privacytools/privacytools.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2135 lines (1878 loc) · 124 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1024">
<meta name="keywords" content="privacy tools, surveillance, encryption, edward snowden, nsa, tor, bitcoin">
<meta name="description" content="You are being watched. Private and state-sponsored organizations are monitoring and recording your online activities. privacytools.io provides knowledge and tools to protect your privacy against global mass surveillance.">
<title>privacy tools - encryption against global mass surveillance 🔒</title>
<link rel="apple-touch-icon" sizes="57x57" href="https://www.privacytools.io/img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="https://www.privacytools.io/img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.privacytools.io/img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://www.privacytools.io/img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.privacytools.io/img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://www.privacytools.io/img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="https://www.privacytools.io/img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://www.privacytools.io/img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.privacytools.io/img/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="https://www.privacytools.io/img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://www.privacytools.io/img/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="https://www.privacytools.io/img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="https://www.privacytools.io/img/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="https://www.privacytools.io/img/favicons/manifest.json">
<link rel="shortcut icon" href="https://www.privacytools.io/img/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="https://www.privacytools.io/img/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="https://www.privacytools.io/img/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/sortable-theme-bootstrap.css" rel="stylesheet"/>
<link href="css/custom.css?v=11" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="privacy tools - encryption against surveillance"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://www.privacytools.io/"/>
<meta property="og:image" content="https://www.privacytools.io/img/layout/ogimage.jpg"/>
<meta property="og:description" content="You are being watched. Private and state-sponsored organizations are monitoring and recording your online activities. privacytools.io provides knowledge and tools to protect your privacy against global mass surveillance."/>
<meta property="og:locale" content="en_US"/>
<meta property="og:site_name" content="privacytools.io"/>
</head>
<body>
<!-- navigation starts here -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Provider<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#ukusa">Avoid all US and UK based services</a></li>
<li><a href="#vpn">Virtual Private Network (VPN)</a></li>
<li><a href="#email">Privacy Email</a></li>
<li><a href="#wc">Warrant Canaries</a></li>
<li><a href="#cloud">Encrypted Cloud Storage</a></li>
<li><a href="#social">Decentralized Social Networks</a></li>
<li><a href="#dns">Domain Name System (DNS)</a></li>
<li><a href="#search">Web Search Engines</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Browser<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#browser">Recommendation</a></li>
<li><a href="#fingerprint">Fingerprint</a></li>
<li><a href="#webrtc">WebRTC IP Leak</a></li>
<li><a href="#addons">Firefox Privacy Addons</a></li>
<li><a href="#about_config">Privacy Related Tweaks</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Software<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#win10">Don't use Windows 10</a></li>
<li><a href="#clients">Email Clients</a></li>
<li><a href="#messaging">Email Alternatives</a></li>
<li><a href="#im">Instant Messenger</a></li>
<li><a href="#voip">Video & Voice Messenger</a></li>
<li><a href="#pw">Password Manager</a></li>
<li><a href="#encrypt">File Encryption</a></li>
<li><a href="#sync">Secure File Sync</a></li>
<li><a href="https://www.privacytools.io/password.html" target="_blank">Secure Password Generator</a></li>
<li><a href="#network">Self Contained Network</a></li>
<li><a href="#mycloud">Self-Hosted Cloud Server</a></li>
<li><a href="#productivity">Productivity Tools</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">OS<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#os">PC OS</a></li>
<li><a href="#live_os">Live CD OS</a></li>
<li><a href="#mobile_os">Mobile OS</a></li>
<li><a href="#firmware">Router Firmware</a></li>
</ul>
</li>
<li><a href="#participate">Participate</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Share<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="mailto:?subject=privacytools.io%20-%20encryption%20against%20global%20mass%20surveillance&body=https://www.privacytools.io/" target="_blank">Email</a></li>
<li><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.privacytools.io" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/share?text=Knowledge%20and%20tools%20to%20protect%20your%20privacy%20against%20global%20mass%20surveillance%20&url=https://www.privacytools.io/&via=privacytoolsIO" target="_blank">Twitter</a></li>
<li><a href="https://plus.google.com/share?url=https://www.privacytools.io" target="_blank">Google+</a></li>
<li><a href="http://reddit.com/submit?url=https://www.privacytools.io&title=privacytools.io%20-%20encryption%20against%20global%20mass%20surveillance" target="_blank">reddit</a></li>
<li><a href="https://www.linkedin.com/shareArticle?url=https://www.privacytools.io&title=privacytools.io%20-%20encryption%20against%20global%20mass%20surveillance" target="_blank">LinkedIn</a></li>
<li><a href="http://www.stumbleupon.com/submit?url=https://www.privacytools.io&title=privacytools.io%20-%20encryption%20against%20global%20mass%20surveillance" target="_blank">StumbleUpon</a></li>
</ul>
<li><a href="https://www.privatesearch.io/" target="_blank">Search</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</div>
</div>
</nav>
<!-- navigation ends here -->
<div class="container theme-showcase" role="main">
<div class="jumbotron">
<h1><a href="https://www.privacytools.io/" title="privacy tools"><img src="img/layout/logo.png" class="img-responsive" alt="privacytools.io"></a></h1>
<p>You are being watched. Private and state-sponsored organizations are monitoring and recording your online activities. privacytools.io provides knowledge and tools to protect your privacy against global mass surveillance.</p>
</div>
<div class="page-header">
<h1>"Privacy? I don't have anything to hide."</h1>
</div>
<blockquote>
<p>
<a href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters" target="_blank" title="Glenn Greenwald - Why privacy matters - TED Talk"><img src="img/layout/Glenn-Greenwald-Why-privacy-matters.jpg" class="img-responsive pull-right" alt="Glenn Greenwald: Why privacy matters" style="margin-left:20px;"></a>
Over the last 16 months, as I've debated this issue around the world, every single time somebody has said to me, "I don't really worry about invasions of privacy because I don't have anything to hide." I always say the same thing to them. I get out a pen, I write down my email address. I say, "Here's my email address. What I want you to do when you get home is email me the passwords to all of your email accounts, not just the nice, respectable work one in your name, but all of them, because I want to be able to just troll through what it is you're doing online, read what I want to read and publish whatever I find interesting. After all, if you're not a bad person, if you're doing nothing wrong, you should have nothing to hide." <strong>Not a single person has taken me up on that offer.</strong></p>
<footer>Glenn Greenwald in <cite title="Why privacy matters - TED Talk"><a href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters" target="_blank">Why privacy matters - TED Talk</a></cite></footer>
</blockquote>
</p>
<strong>Related:</strong> <a href="https://www.reddit.com/r/privacy/comments/3hynvp/how_do_you_counter_the_i_have_nothing_to_hide/" target="_blank">How do you counter the "I have nothing to hide?" argument?</a>
<div class="page-header text-center">
<h1>Privacy-Respecting Search Engine</h1>
</div>
<p>
<img src="img/layout/privatesearch.png" class="center-block img-responsive" alt="privatesearch.io">
</p>
<p class="text-center">
</p><form method="POST" action="https://www.privatesearch.io/" id="search_form" role="search">
<div class="input-group col-md-8 col-md-offset-2">
<input type="search" name="q" class="form-control input-lg" id="q" placeholder="Search for..." autocomplete="off" value="">
<span class="input-group-btn">
<button type="submit" formtarget="_blank" class="btn btn-default input-lg"><span class="hide_if_nojs"><span class="glyphicon glyphicon-search"></span></span><span class="hidden active_if_nojs">start search</span></button>
</span>
</div>
</form>
<p></p>
<p class="text-center text-muted">example search: <a href="https://www.privatesearch.io/?q=Edward%20Snowden" target="_blank">edward snowden</a></p>
<p class="text-center"><a href="https://www.privatesearch.io/" target="_blank"><strong>privatesearch.io</strong></a> is our new privacy-respecting and highly customizable search engine with excellent results. it's open source and doesn't have ads, logs or tracking.</p>
<hr>
<br />
<a class="anchor" name="win10"></a>
<div class="page-header">
<h1>Don't use Windows 10 - It's a privacy nightmare</h1>
</div>
<div class="alert alert-warning" role="alert">
<strong>Microsoft introduced a lot of new features in Windows 10 such as Cortana. However, most of them are violating your privacy.</strong>
</div>
<img src="img/layout/Windows-10-Privacy.jpg" class="img-responsive pull-right" alt="Windows 10 Privacy" style="margin-left:10px;">
<ol>
<strong><li>Data syncing is by default enabled.</li></strong>
<ul><li>Browsing history and open websites.</li></ul>
<ul><li>Apps settings.</li></ul>
<ul><li>WiFi hotspot names and passwords.</li></ul>
<strong><li>Your device is by default tagged with a unique advertising ID.</li></strong>
<ul><li>Used to serve you with personalized advertisements by third-party advertisers and ad networks.</li></ul>
<strong><li>Cortana can collect any of your data.</li></strong>
<ul><li>Your keystrokes, searches and mic input.</li></ul>
<ul><li>Calendar data.</li></ul>
<ul><li>Music you listen to.</li></ul>
<ul><li>Credit Card information.</li></ul>
<ul><li>Purchases.</li></ul>
<strong><li>Microsoft can collect any personal data.</li></strong>
<ul><li>Your identity.</li></ul>
<ul><li>Passwords.</li></ul>
<ul><li>Demographics.</li></ul>
<ul><li>Interests and habits.</li></ul>
<ul><li>Usage data.</li></ul>
<ul><li>Contacts and relationships.</li></ul>
<ul><li>Location data.</li></ul>
<ul><li>Content like emails, instant messages, caller list, audio and video recordings.</li></ul>
<strong><li>Your data can be shared.</li></strong>
<ul><li>When downloading Windows 10, you are authorizing Microsoft to share any of above mentioned data with any third-party, with or without your consent.</li></ul>
</ol>
<p>Source: <a href="http://propakistani.pk/2015/07/30/windows-10-can-be-your-worst-privacy-nightmare/" target="_blank">propakistani.pk</a>
<br>
<p><a href="https://github.com/10se1ucgo/DisableWinTracking/releases" target="_blank"><button type="button" class="btn btn-warning">Download: Win10 Tracking Disable Tool</button></a></p>
This open source tool uses some known methods that attempt to disable major tracking features in Windows 10.
<br>
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>More bad news</h3>
<ul>
<li><a href="http://arstechnica.com/information-technology/2015/08/even-when-told-not-to-windows-10-just-cant-stop-talking-to-microsoft/" target="_blank">Even when told not to, Windows 10 just can’t stop talking to Microsoft. It's no wonder that privacy activists are up in arms.</a> - Ars Technica.</li>
<li><a href="http://arstechnica.com/information-technology/2015/08/windows-10-privacy-paranoia-leads-to-ban-from-private-piracy-torrent-trackers/" target="_blank">Windows 10 privacy paranoia leads to ban from private pirate torrent trackers. Pirates are concerned that Win10 will send the contents of your hard disk to Microsoft.</a> - Ars Technica.</li>
<li><a href="http://lifehacker.com/what-windows-10s-privacy-nightmare-settings-actually-1722267229" target="_blank">What Windows 10's "Privacy Nightmare" Settings Actually Do.</a> - Lifehacker.</li>
<li><a href="https://www.techdirt.com/articles/20150820/06171332012/windows-10-reserves-right-to-block-pirated-games-unauthorized-hardware.shtml" target="_blank">Windows 10 Reserves The Right To Block Pirated Games And 'Unauthorized' Hardware.</a> - Techdirt.</li>
</ul>
</div>
<div class="col-md-6"><span class="pull-right">
<h3>Some good news</h3>
<ul>
<li><a href="https://fix10.isleaked.com/" target="_blank">Fix Windows 10 privacy.</a> - fix10.isleaked.com</li>
<li><a href="http://arstechnica.com/information-technology/2015/08/windows-10-doesnt-offer-much-privacy-by-default-heres-how-to-fix-it/" target="_blank">Windows 10 doesn’t offer much privacy by default: Here’s how to fix it. </a> - Ars Technica.</li>
<li><a href="https://www.reddit.com/r/Windows10/comments/3f38ed/guide_how_to_disable_data_logging_in_w10" target="_blank">Guide: How to disable data logging in W10.</a></li>
</ul>
</span></div>
</div>
</div>
<a class="anchor" name="ukusa"></a>
<div class="page-header">
<h1>Global Mass Surveillance - The Fourteen Eyes</h1>
</div>
<img src="img/layout/UKUSA.png" class="img-responsive pull-right" alt="UKUSA Agreement" style="margin-left:10px;">
<p>The UKUSA Agreement is an agreement between the United Kingdom, United States, Australia, Canada, and New Zealand to cooperatively collect, analyze, and share intelligence. Members of this group, known as the <a href="http://www.giswatch.org/en/communications-surveillance/unmasking-five-eyes-global-surveillance-practices" target="_blank">Five Eyes</a>, focus on gathering and analyzing intelligence from different parts of the world. While Five Eyes countries have agreed to <a href="http://www.pbs.org/newshour/rundown/an-exclusive-club-the-five-countries-that-dont-spy-on-each-other/" target="_blank">not spy on each other</a> as adversaries, leaks by Snowden have revealed that some Five Eyes members monitor each other’s citizens and <a href="http://www.theguardian.com/uk/2013/jun/21/gchq-cables-secret-world-communications-nsa" target="_blank">share intelligence</a> to <a href="http://www.theguardian.com/politics/2013/jun/10/nsa-offers-intelligence-british-counterparts-blunkett" target="_blank">avoid breaking domestic laws</a> that prohibit them from spying on their own citizens. The Five Eyes alliance also cooperates with groups of third party countries to share intelligence (forming the Nine Eyes and Fourteen Eyes), however Five Eyes and third party countries can and do spy on each other.</p>
<br>
<div class="row">
<div class="col-sm-4">
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Five Eyes</h3>
</div>
<div class="panel-body">
1. Australia<br />
2. Canada<br />
3. New Zealand<br />
4. United Kingdom<br />
5. United States of America
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">Nine Eyes</h3>
</div>
<div class="panel-body">
6. Denmark<br />
7. France<br />
8. Netherlands<br />
9. Norway
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Fourteen Eyes</h3>
</div>
<div class="panel-body">
10. Belgium<br />
11. Germany<br />
12. Italy<br />
13. Spain<br />
14. Sweden
</div>
</div>
</div>
</div>
<a class="anchor" name="usa"></a>
<h3>Why is it not recommended to choose a US based service?</h3>
<img src="img/layout/USA.png" class="img-responsive pull-right" alt="USA" style="margin-left:10px;">
<p>Services based in the United States are not recommended because of the country’s surveillance programs, use of <a href="https://www.eff.org/issues/national-security-letters/faq" target="_blank">National Security Letters</a> (NSLs) and accompanying gag orders, which forbid the recipient from talking about the request. This combination allows the government to <a href="https://www.schneier.com/blog/archives/2013/08/more_on_the_nsa.html" target="_blank">secretly force</a> companies to grant complete access to customer data and transform the service into a tool of mass surveillance.</p>
<p>An example of this is <a href="http://en.wikipedia.org/wiki/Lavabit#Suspension_and_gag_order" target="_blank">Lavabit</a> – a discontinued secure email service created by Ladar Levison. The FBI <a href="http://motherboard.vice.com/blog/lavabit-founder-ladar-levison-discusses-his-federal-battle-for-privacy" target="_blank">requested</a> Snowden’s records after finding out that he used the service. Since Lavabit did not keep logs and email content was stored encrypted, the FBI served a subpoena (with a gag order) for the service’s SSL keys. Having the SSL keys would allow them to access communications (both metadata and unencrypted content) in real time for all of Lavabit’s customers, not just Snowden's.</p>
<p>Ultimately, Levison turned over the SSL keys and <a href="http://www.theguardian.com/commentisfree/2014/may/20/why-did-lavabit-shut-down-snowden-email" target="_blank">shut down</a> the service at the same time. The US government then <a href="http://www.cnbc.com/id/100962389" target="_blank">threatened Levison with arrest</a>, saying that shutting down the service was a violation of the court order.</p>
<a class="anchor" name="kdl"></a>
<h3>Key disclosure law - Who is required to hand over the encryption keys to authorities?</h3>
<p>Mandatory key disclosure laws require individuals to turn over encryption keys to law enforcement conducting a criminal investigation. How these laws are implemented (who may be legally compelled to assist) vary from nation to nation, but a warrant is generally required. Defenses against key disclosure laws include steganography and encrypting data in a way that provides plausible deniability.</p>
<p>Steganography involves hiding sensitive information (which may be encrypted) inside of ordinary data (for example, encrypting an image file and then hiding it in an audio file). With plausible deniability, data is encrypted in a way that prevents an adversary from being able to prove that the information they are after exists (for example, one password may decrypt benign data and another password, used on the same file, could decrypt sensitive data).</p>
<h3>Related Information</h3>
<ul>
<li><a href="https://www.bestvpn.com/the-ultimate-privacy-guide/#avoidus" target="_blank">Avoid all US and UK based services</a>
<li><a href="https://en.wikipedia.org/wiki/Surespot#History" target="_blank">Proof that warrant canaries work based on the surespot example.</a></li>
<li><a href="http://en.wikipedia.org/wiki/UKUSA_Agreement" target="_blank">http://en.wikipedia.org/wiki/UKUSA_Agreement</a></li>
<li><a href="http://en.wikipedia.org/wiki/Lavabit#Suspension_and_gag_order" target="_blank">http://en.wikipedia.org/wiki/Lavabit#Suspension_and_gag_order</a></li>
<li><a href="https://en.wikipedia.org/wiki/Key_disclosure_law" target="_blank">https://en.wikipedia.org/wiki/Key_disclosure_law</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Mass_surveillance" target="_blank">http://en.wikipedia.org/wiki/Portal:Mass_surveillance</a></li>
</ul>
<a class="anchor" name="vpn"></a>
<div class="page-header">
<h1>VPN providers with extra layers of privacy - No Affiliates</h1>
</div>
<div class="alert alert-success" role="alert">
<strong>All providers listed here are outside the US, use encryption, accept Bitcoin and support OpenVPN. Prices are yearly. The table is sortable.</strong>
</div>
<br>
<!-- START VPN TABLE -->
<!-- *START LEFT & RIGHT* -->
<div class="container">
<div class="row">
<!-- *LEFT* -->
<div class="col-md-6">
<h2>Part 1</h2>
<br/>
<table class="sortable-theme-bootstrap" data-sortable>
<thead>
<tr>
<th data-sortable="true">VPN / Country</th>
<th data-sortable="true" title="Number of Servers">Servers</th>
<th data-sortable="true">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td data-value="AirVPN"><a href="https://airvpn.org/" target="_blank"><img src="img/provider/AirVPN.gif" width="200" height="70"><br />AirVPN.org (Italy)</a></td>
<td>76</td>
<td data-value="54">54 €</td>
</tr>
<tr>
<td data-value="AzireVPN"><a href="https://www.azirevpn.com/" target="_blank"><img src="img/provider/AzireVPN.gif" width="200" height="70"><br />AzireVPN.com (Sweden)</a></td>
<td>3</td>
<td data-value="54">45 €</td>
</tr>
<tr>
<td data-value="blackVPN"><a href="https://www.blackvpn.com/" target="_blank"><img src="img/provider/blackVPN.gif" width="200" height="70"><br />blackVPN.com (Hong Kong)</a></td>
<td>25</td>
<td data-value="54">99 €</td>
</tr>
<tr>
<td data-value="Cryptostorm"><a href="https://cryptostorm.is/" target="_blank"><img src="img/provider/Cryptostorm.gif" width="200" height="70"><br />Cryptostorm.is (Iceland)</a></td>
<td>13</td>
<td data-value="52">$ 52</td>
</tr>
<tr>
<td data-value="FrootVPN"><a href="https://www.frootvpn.com/" target="_blank"><img src="img/provider/FrootVPN.gif" width="200" height="70"><br />FrootVPN.com (Sweden)</a></td>
<td>27</td>
<td data-value="36">$ 36</td>
</tr>
<tr>
<td data-value="hide.me"><a href="https://hide.me/" target="_blank"><img src="img/provider/hide.me.gif" width="200" height="70"><br />hide.me (Malaysia)</a></td>
<td>85</td>
<td data-value="65">$ 65</td>
</tr>
</tbody>
</table>
</div>
<!-- *RIGHT* -->
<div class="col-md-6">
<h2>Part 2</h2>
<br/>
<table class="sortable-theme-bootstrap" data-sortable>
<thead>
<tr>
<th data-sortable="true">VPN / Country</th>
<th data-sortable="true" title="Number of Servers">Servers</th>
<th data-sortable="true">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td data-value="IVPN"><a href="https://www.ivpn.net/" target="_blank"><img src="img/provider/IVPN.gif" width="200" height="70"><br />IVPN.net (Gibraltar)</a></td>
<td>15</td>
<td data-value="100">$ 100</td>
</tr>
<tr>
<td data-value="Mullvad"><a href="https://mullvad.net/" target="_blank"><img src="img/provider/Mullvad.gif" width="200" height="70"><br />Mullvad.net (Sweden)</a></td>
<td>23</td>
<td data-value="60">60 €</td>
</tr>
<tr>
<td data-value="NordVPN"><a href="https://nordvpn.com/" target="_blank"><img src="img/provider/NordVPN.gif" width="200" height="70"><br />NordVPN.com (Panama)</a></td>
<td>52</td>
<td data-value="48">$ 48</td>
</tr>
<tr>
<td data-value="Perfect Privacy"><a href="https://www.perfect-privacy.com/" target="_blank"><img src="img/provider/Perfect-Privacy.gif" width="200" height="70"><br />Perfect-Privacy.com (Panama)</a></td>
<td>40</td>
<td data-value="150">150 €</td>
</tr>
<tr>
<td data-value="Privatoria"><a href="https://privatoria.net/" target="_blank"><img src="img/provider/Privatoria.gif" width="200" height="70"><br />Privatoria.net (Czech Republic)</a></td>
<td>12</td>
<td data-value="90">$ 22,8</td>
</tr>
<tr>
<td data-value="Proxy.sh"><a href="https://proxy.sh/" target="_blank"><img src="img/provider/Proxy.sh.gif" width="200" height="70"><br />Proxy.sh (Seychelles)</a></td>
<td>288</td>
<td data-value="90">$ 90</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- *END LEFT & RIGHT* -->
<!-- END VPN TABLE -->
<br>
<div class="alert alert-warning" role="alert">
<strong>Note: Using a VPN provider will not make you anonymous. But it will give you a better privacy. A VPN is not a tool for illegal activities. Don't rely on a "no log" policy.</strong>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Our VPN Provider Criteria</h3>
<ul>
<li>Operating outside the USA or other Five Eyes countries. <a href="https://www.bestvpn.com/the-ultimate-privacy-guide/#avoidus" target="_blank">Avoid all US and UK based services.</a></li>
<li>OpenVPN software support.</li>
<li>File-Sharing (P2P) is tolerated on selected servers.</li>
<li>Accepts Bitcoin, cash, debit cards or cash cards as a payment method.</li>
<li>No personal information is required to create an account. Only username, password and <a href="#email">Email.</a></li>
</ul>
<p>We're not affiliated with any of the above listed VPN providers. This way can give you honest recommendations.</p>
</div>
<div class="col-md-6"><span class="pull-right">
<h3>Related VPN information</h3>
<ul>
<li><a href="http://torrentfreak.com/how-to-make-vpns-even-more-secure-120419/" target="_blank">How To Make VPNs Even More Secure</a></li>
<li><a href="https://blog.spideroak.com/20140124105217-vpn-privacy-anonymity" target="_blank">VPN, privacy and anonymity - SpiderOak</a></li>
<li><a href="https://vikingvpn.com/blogs/off-topic/beware-of-vpn-marketing-and-affiliate-programs" target="_blank">Beware of False Reviews - VPN Marketing and Affiliate Programs</a></li>
<li><a href="http://torrentfreak.com/anonymous-vpn-service-provider-review-2015-150228/" target="_blank">Which VPN Services Take Your Anonymity Seriously?</a><br />(<strong>Note:</strong> The providers listed first in the TorrentFreaks article are sponsored)</li>
<li><a href="https://www.goldenfrog.com/take-back-your-internet/articles/7-myths-about-vpn-logging-and-anonymity" target="_blank">I am Anonymous When I Use a VPN - 7 Myths Debunked</a><br />(<strong>Note:</strong> While this is a good read, they also use the article for self promotion)</li>
<li><a href="http://torrentfreak.com/proxy-sh-vpn-provider-monitored-traffic-to-catch-hacker-130930/" target="_blank">Proxy.sh VPN Provider Sniffed Server Traffic to Catch Hacker</a></li>
<li><a href="https://proxy.sh/panel/knowledgebase.php?action=displayarticle&id=5" target="_blank">Ethical policy - All of the reasons why Proxy.sh might enable logging</a></li>
<li><a href="https://www.ivpn.net/privacy" target="_blank">IVPN.net will collect your email and IP address after sign up</a><br />Read the <a data-toggle="tooltip" data-placement="top" data-original-title="The IP collected at signup is only used for a few seconds by our fraud module and then discarded, it is not stored. Storing them would significantly increase our own liability and certainly would not be in our interest. You're absolutely welcome to signup using Tor or a VPN.">Email statement</a> from IVPN.</li>
<li><a href="https://medium.com/@blackVPN/no-logs-6d65d95a3016" target="_blank">blackVPN announced to delete connection logs after disconnection</a></li>
</ul>
</span></div>
</div>
</div>
<a class="anchor" name="wc"></a>
<div class="page-header">
<h1>What is a warrant canary?</h1>
</div>
<img src="img/layout/warrant-canary.jpg" class="img-responsive pull-right" alt="Warrant Canary Example" style="margin-left:20px;">
<p>A warrant canary is a posted document stating that an organization has not received any secret subpoenas during a specific period of time. If this document fails to be updated during the specified time then the user is to assume that the service has received such a subpoena and should stop using the service.</p>
<h4>Warrant Canary Examples:</h4>
<ol>
<li><a href="https://proxy.sh/canary" target="_blank">https://proxy.sh/canary</a></li>
<li><a href="https://www.ivpn.net/resources/canary.txt" target="_blank">https://www.ivpn.net/resources/canary.txt</a></li>
<li><a href="https://www.vpnsecure.me/files/canary.txt" target="_blank">https://www.vpnsecure.me/files/canary.txt</a></li>
<li><a href="https://www.bolehvpn.net/canary.html" target="_blank">https://www.bolehvpn.net/canary.html</a></li>
<li><a href="https://lokun.is/canary.txt" target="_blank">https://lokun.is/canary.txt</a></li>
<li><a href="https://www.ipredator.se/static/downloads/canary.txt" target="_blank">https://www.ipredator.se/static/downloads/canary.txt</a></li>
</ol>
<h4>Related Warrant Canary Information</h4>
<ul>
<li><a href="https://www.eff.org/de/deeplinks/2014/04/warrant-canary-faq" target="_blank">Warrant Canary Frequently Asked Questions</a></li>
<li><a href="https://canarywatch.org/" target="_blank">Canarywatch.org</a> - Lists warrant canaries, tracks changes or disappearances of canaries</li>
<li><a href="http://en.wikipedia.org/wiki/Warrant_canary#Companies_and_organizations_with_warrant_canaries" target="_blank">Companies and organizations with warrant canaries</a></li>
</ul>
<a class="anchor" name="browser"></a>
<div class="page-header">
<h1>Browser Recommendation</h1>
</div>
<div class="row">
<div class="col-sm-4">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Mozilla Firefox</h3>
</div>
<div class="panel-body">
<p><img src="img/tools/Firefox.png" align="right" style="margin-left:5px;"><a href="http://www.erfahrungen.com/mit/Firefox/" target="_blank">Firefox</a> is fast, reliable, open source and respects your privacy. Don't forget to adjust the settings according to our recommendations: <a href="#webrtc">WebRTC</a> and <a href="#about_config">about:config</a> and get the <a href="#addons">privacy addons</a>.</p>
<p><a href="https://www.firefox.com/" target="_blank"><button type="button" class="btn btn-success">Download: www.firefox.com</button></a></p>
<p>OS: Windows, Mac, Linux, Android, BSD.</p>
</div>
</div>
</div>
<!-- IceCate removed
<div class="col-sm-4">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">GNU IceCat</h3>
</div>
<div class="panel-body">
<p><img src="img/tools/IceCat.png" align="right" style="margin-left:5px;">GNU IceCat is a good choice for privacy related matters. It is a free software rebranding of the Mozilla Firefox web browser distributed by the GNU Project. IceCat comes with pre-installed privacy addons.</p>
<p><a href="http://www.gnu.org/software/gnuzilla/" target="_blank"><button type="button" class="btn btn-info">Download: www.gnu.org</button></a></p>
<p>OS: Windows, Mac, Linux, Android.</p>
</div>
</div>
</div>
-->
<div class="col-sm-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">Tor Browser Bundle</h3>
</div>
<div class="panel-body">
<p><img src="img/tools/Tor-Browser.png" align="right" style="margin-left:5px;">Tor Browser is your choice if you need an extra layer of anonymity. It's a modified version of Firefox, it comes with pre-installed privacy addons, encryption and an advanced proxy.</p>
<p><a href="https://www.torproject.org/" target="_blank"><button type="button" class="btn btn-warning">Download: www.torproject.org</button></a></p>
<p>OS: Windows, Mac, Linux, <a href="https://mike.tig.as/onionbrowser/" target="_blank">iOS</a>, <a href="https://www.torproject.org/docs/android.html.en" target="_blank">Android</a>, <a href="https://github.com/torbsd/openbsd-ports" target="_blank">OpenBSD.</a></p>
</div>
</div>
</div>
</div>
<h3>Worth Mentioning</h3>
<ul>
<li><a href="https://anonymous-proxy-servers.net/en/jondofox.html" target="_blank">JonDoFox</a> - A profile for the Firefox web browser, particularly optimized for anonymous and secure web surfing.</li>
</ul>
<a class="anchor" name="fingerprint"></a>
<div class="page-header">
<h1>Browser Fingerprint - Is your browser configuration unique?</h1>
</div>
<div class="alert alert-warning" role="alert">
<strong>Your Browser sends information that makes you unique amongst millions of users and therefore easy to identify.</strong>
</div>
<img src="img/layout/browser-fingerprint.jpg" class="img-responsive pull-right" alt="Warrant Canary Example" style="margin-left:20px;">
<p>When you visit a web page, your browser voluntarily sends information about its configuration, such as available fonts, browser type, and add-ons. If this combination of information is unique, it may be possible to identify and track you without using cookies. EFF created a Tool called <a href="https://panopticlick.eff.org/" target="_blank">Panopticlick</a> to test your browser to see how unique it is.</p>
<p><a href="https://panopticlick.eff.org/" target="_blank"><button type="button" class="btn btn-warning">Test your Browser now</button></a></p>
<p>You need to find what <strong>most browsers</strong> are reporting, and then use those variables to bring your browser in the same population. This means having the same fonts, plugins, and extensions installed as the large installed base. You should have a <a href="https://addons.mozilla.org/en-US/firefox/addon/random-agent-spoofer/" target="_blank">spoofed user agent string</a> to match what the large userbase has. You need have the same settings enabled and disabled, such as DNT and WebGL. You need your browser to look as common as everyone else. Disabling JavaScript, using Linux, or even the TBB, will make your browser stick out from the masses.</p>
<p>Modern web browsers have not been architected to assure personal web privacy. Rather than worrying about being fingerprinted, it seems more practical to use <a href="#addons">free software plugins</a> like Privacy Badger, uBlock Origin and Disconnect. They not only respect your freedom, but your privacy also. You can get much further with these than trying to manipulate your browser's fingerprint.</p>
<h3>Related Information</h3>
<ul>
<li><a href="https://panopticlick.eff.org/browser-uniqueness.pdf" target="_blank">How Unique Is Your Web Browser? Peter Eckersley, EFF.</a></li>
<li><a href="https://www.reddit.com/r/privacytoolsIO/comments/35pqyl/new_section_browser_fingerprint_is_your_browser/" target="_blank">Join our discussion on reddit.com about browser finterprinting.</a></li>
<li><a href="#addons">Our Firefox privacy addons section.</a></li>
<li><a href="https://www.browserleaks.com/" target="_blank">BrowserLeaks.com</a> - Web browser security testing tools, that tell you what exactly personal identity data may be leaked without any permissions when you surf the Internet.</li>
</ul>
<a class="anchor" name="webrtc"></a>
<div class="page-header">
<h1>WebRTC IP Leak Test - Is your IP address leaking?</h1>
</div>
<div class="alert alert-danger" role="alert">
<strong>WebRTC is a new communication protocol that relies on JavaScript that can leak your actual IP address from behind your VPN.</strong>
</div>
<p>While software like NoScript prevents this, it's probably a good idea to block this protocol directly as well, just to be safe.</p>
<p><a href="webrtc.html" target="_blank"><button type="button" class="btn btn-warning">Test your Browser now</button></a></p>
<h3>How to disable WebRTC in Firefox?</h3>
<p>In short: Set "media.peerconnection.enabled" to "false" in "about:config".</p>
<p><strong>Explained:</strong></p>
<ol>
<li>Enter "about:config" in the firefox address bar and press enter.</li>
<li>Press the button "I'll be careful, I promise!"</li>
<li>Search for "media.peerconnection.enabled"</li>
<li>Double click the entry, the column "Value" should now be "false"</li>
<li>Done. Do the WebRTC leak test again.</li>
</ol>
<p>If you want to make sure every single WebRTC related setting is really disabled change these settings:</p>
<ol>
<li>media.peerconnection.turn.disable = true</li>
<li>media.peerconnection.use_document_iceservers = false</li>
<li>media.peerconnection.video.enabled = false</li>
<li>media.peerconnection.identity.timeout = 1</li>
</ol>
<p>Now you can be 100% sure WebRTC is disabled.</p>
<p><a href="webrtc.html" target="_blank"><button type="button" class="btn btn-primary">Test your Browser again</button></a></p>
<h3>How to fix the WebRTC Leak in Google Chrome?</h3>
<p>There is no known working solution, only a plugin that is easily circumvented. Please use Firefox instead. </p>
<h3>What about other browsers?</h3>
<p>
Chrome on iOS, Internet Explorer and Safari does not implement WebRTC yet. <a href="#browser">But we recommend using Firefox on all devices.</a>
</p>
<a class="anchor" name="addons"></a>
<div class="page-header">
<h1>Excellent Firefox Privacy Addons</h1>
</div>
<div class="alert alert-success" role="alert">
<strong>Improve your privacy with these excellent Firefox addons.</strong>
</div>
<h3>Stop tracking with "Disconnect"</h3>
<!--
<img src="img/addons/Privacy-Badger.gif" class="img-responsive pull-left" alt="Privacy Badger" style="margin-right:30px;">
<p><strong>Privacy Badger</strong> is a browser add-on that stops advertisers and other third-party trackers from secretly tracking where you go and what pages you look at on the web. Privacy Badger automatically blocks that advertiser from loading any more content in your browser.
<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/privacy-badger-firefox/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/privacy-badger-firefox/</a></p>
<br />
-->
<img src="img/addons/Disconnect.gif" class="img-responsive pull-left" alt="Disconnect" style="margin-right:30px;">
<p><strong>Disconnect</strong> was founded in 2011 by former Google engineers and a consumer-and privacy-rights attorney. The addon is open source and loads the pages you go to 27% faster and stops tracking by 2,000+ third-party sites. It also keeps your searches private.
<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/disconnect/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/disconnect/</a></p>
<h3>Block Ads with "uBlock Origin"</h3>
<img src="img/addons/uBlock.gif" class="img-responsive pull-left" alt="uBlock" style="margin-right:30px;">
<p><strong>uBlock Origin</strong> is an lightweight and efficient blocker: easy on memory and CPU footprint. The extension has no monetization strategy and development is volunteered. OS: Firefox, Safari, Opera, Chromium. AdBlock Plus is not recommended because they show "acceptable ads". The system behind that white list is lacking transparency.
<br />
<a href="https://addons.mozilla.org/en/firefox/addon/ublock-origin/" target="_blank">https://addons.mozilla.org/en/firefox/addon/ublock-origin/</a>
</p>
<h3>Hinder Browser Fingerprinting with "Random Agent Spoofer"</h3>
<img src="img/addons/Random-Agent-Spoofer.gif" class="img-responsive pull-left" alt="Random Agent Spoofer" style="margin-right:30px;">
<p>Random Agent Spoofer is a privacy enhancing firefox addon which aims to hinder browser fingerprinting. It does this by changing the browser/device profile on a timer.
<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/random-agent-spoofer/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/random-agent-spoofer/</a></p>
<h3>Automatically Delete Cookies with "Self-Destructing Cookies"</h3>
<img src="img/addons/Self-Destructing-Cookies.gif" class="img-responsive pull-left" alt="Self-Destructing Cookies" style="margin-right:30px;">
<p>Self-Destructing Cookies automatically removes cookies when they are no longer used by open browser tabs. With the cookies, lingering sessions, as well as information used to spy on you, will be expunged. <br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/self-destructing-cookies/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/self-destructing-cookies/</a></p>
<h3>Encryption with "HTTPS Everywhere"</h3>
<img src="img/addons/HTTPS-Everywhere.gif" class="img-responsive pull-left" alt="HTTPS Everywhere" style="margin-right:30px;">
<p>HTTPS Everywhere is a Firefox, Chrome, and Opera extension that encrypts your communications with many major websites, making your browsing more secure. A collaboration between The Tor Project and the Electronic Frontier Foundation.
<br />
<a href="https://www.eff.org/https-everywhere" target="_blank">https://www.eff.org/https-everywhere</a></p>
<br>
<div class="alert alert-warning" role="alert">
<strong>The following addons require quite a lot of interaction from user to get things working. Some sites will not work properly until you have configured the addons.</strong>
</div>
<!--
<h3>Stop cross-site requests with "Request Policy"</h3>
<img src="img/addons/Request-Policy.gif" class="img-responsive pull-left" alt="Request Policy" style="margin-right:30px;">
<p>Many websites integrate features which let other websites track you, such as Facebook Like Buttons or Google Analytics. Request Policy gives you control over the requests that websites make to other websites. This gives you greater and more fine grained control over the information that you leak online.
<br />
<a href="https://requestpolicycontinued.github.io/" target="_blank">https://requestpolicycontinued.github.io/</a>
</p>
-->
<h3>Be in total control with "NoScript Security Suite"</h3>
<img src="img/addons/NoScript.gif" class="img-responsive pull-left" alt="NoScript" style="margin-right:30px;">
<p>
Highly customizable plugin to selectively allow Javascript, Java, and Flash to run only on websites you trust. Not for casual users, it requires technical knowledge to configure.
<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/noscript/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/noscript/</a>
</p>
<h3>Content control with "Policeman"</h3>
<img src="img/addons/Policeman.gif" class="img-responsive pull-left" alt="Policeman" style="margin-right:30px;">
<p>This addon has purpose similar to RequestPolicy and NoScript. It's different from the former in that it supports rules based on content type. For example, you can allow images and styles, but not scripts and frames for some sites. It can also be set up to act as a blacklist.
<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/policeman/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/policeman/</a>
</p>
<a class="anchor" name="about_config"></a>
<div class="page-header">
<h1>Firefox: Privacy Related "about:config" Tweaks</h1>
</div>
<div class="alert alert-success" role="alert">
This is a collection of privacy related <strong>about:config</strong> tweaks. We'll show you how to enhance the privacy of your Firefox browser.
</div>
<p></p><h3>Preparation:</h3><p></p>
<ol>
<li>Enter "about:config" in the firefox address bar and press enter.</li>
<li>Press the button "I'll be careful, I promise!"</li>
<li>Follow the instructions below...</li>
</ol>
<p></p><h3>Getting started:</h3><p></p>
<ol>
<li>privacy.trackingprotection.enabled = true</li>
<ul><li>This is Mozilla’s new built in tracking protection.</li></ul>
<li>geo.enabled = false</li>
<ul><li>Disables geolocation.</li></ul>
<li>browser.safebrowsing.enabled = false</li>
<ul><li>Disable Google Safe Browsing and phishing protection. Security risk, but privacy improvement.</li></ul>
<li>browser.safebrowsing.malware.enabled = false</li>
<ul><li>Disable Google Safe Browsing malware checks. Security risk, but privacy improvement.</li></ul>
<li>dom.event.clipboardevents.enabled = false</li>
<ul><li>Disable that websites can get notifications if you copy, paste, or cut something from a web page, and it lets them know which part of the page had been selected.</li></ul>
<li>network.cookie.cookieBehavior = 1</li>
<ul>
<li>Disable cookies</li>
<li>0 = accept all cookies by default</li>
<li>1 = only accept from the originating site (block third party cookies)</li>
<li>2 = block all cookies by default</li>
</ul>
<li>network.cookie.lifetimePolicy = 2</li>
<ul>
<li>cookies are deleted at the end of the session</li>
<li>0 = Accept cookies normally</li>
<li>1 = Prompt for each cookie</li>
<li>2 = Accept for current session only</li>
<li>3 = Accept for N days</li>
</ul>
<li>browser.cache.offline.enable = false</li>
<ul><li>Disables offline cache.</li></ul>
<li>browser.send_pings = false</li>
<ul><li>The attribute would be useful for letting websites track visitors’ clicks. </li></ul>
<li>webgl.disabled = true</li>
<ul><li>WebGL is a potential security risk. <a href="http://security.stackexchange.com/questions/13799/is-webgl-a-security-concern" target="_blank">Source</a></li></ul>
<li>dom.battery.enabled = false</li>
<ul><li>Website owners can track the battery status of your device. <a href="https://www.reddit.com/r/privacytoolsIO/comments/3fzbgy/you_may_be_tracked_by_your_battery_status_of_your/" target="_blank">Source</a></li></ul>
<li>browser.sessionstore.max_tabs_undo = 0</li>
<ul><li>Even with Firefox set to not remember history, your closed tabs are stored temporarily at Menu -> History -> Recently Closed Tabs.</li></ul>
</ol>
<h3>Related Information</h3>
<ul>
<li><a href="http://kb.mozillazine.org/Category:Security_and_privacy-related_preferences" target="_blank">mozillazine.org</a> - Security and privacy-related preferences. </li>
<li><a href="https://github.com/pyllyukko/user.js" target="_blank">user.js Firefox hardening stuff</a> - This is a user.js configuration file for Mozilla Firefox that's supposed to harden Firefox's settings and make it more secure.</li>
</ul>
<a class="anchor" name="email"></a>
<div class="page-header">
<h1>Privacy-Conscious Email Providers - No Affiliates</h1>
</div>
<div class="alert alert-success" role="alert">
<strong>All providers listed here are operating outside the US and support <a data-toggle="tooltip" data-placement="bottom" data-original-title="When sending or receiving emails, if both the sending and receiving servers support TLS encryption, the email is sent between servers using an encrypted connection.">SMTP TLS.</a> The table is sortable. Never trust any company with your privacy, always encrypt.</strong>
</div>
<br>
<table class="sortable-theme-bootstrap" data-sortable>
<thead>
<tr>
<th data-sortable="true">Email Service</th>
<th data-sortable="true">Since</th>
<th data-sortable="true">Server</th>
<th data-sortable="true">Storage</th>
<th data-sortable="true">Price / Year</th>
<th data-sortable="true">Bitcoin</th>
<th data-sortable="true">Encryption</th>
<th data-sortable="true">Own Domain</th>
</tr>
</thead>
<tbody>
<tr>
<td data-value="GhostMail"><a href="https://www.ghostmail.com/" target="_blank"><img src="img/provider/GhostMail.gif" width="200" height="70"><br />GhostMail.com</a></td>
<td data-value="2015">2015</td>
<td>Sweden</td>
<td data-value="1000">1 GB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<tr>
<td data-value="OpenMailBox"><a href="https://www.openmailbox.org/" target="_blank"><img src="img/provider/OpenMailBox.gif" width="200" height="70"><br />OpenMailBox.org</a></td>
<td data-value="2013">2013</td>
<td>France</td>
<td data-value="1000">1 GB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<tr>
<td data-value="ProtonMail"><a href="https://www.protonmail.ch/" target="_blank"><img src="img/provider/ProtonMail.ch.gif" width="200" height="70"><br />ProtonMail.ch</a></td>
<td data-value="2013">2013</td>
<td>Switzerland</td>
<td data-value="500">500 MB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<!-- removed ruggedinbox: ssl certificate expired
<tr>
<td data-value="RuggedInbox"><a href="https://ruggedinbox.com/" target="_blank"><img src="img/provider/RuggedInbox.gif" width="200" height="70"><br />RuggedInbox.com</a></td>
<td data-value="2014">2014</td>
<td>Bulgaria</td>
<td data-value="200">200 MB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
-->
<tr>
<td data-value="Tutanota"><a href="https://www.tutanota.com/" target="_blank"><img src="img/provider/Tutanota.gif" width="200" height="70"><br />Tutanota.com</a></td>
<td data-value="2011">2011</td>
<td>Germany</td>
<td data-value="1000">1 GB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<td data-value="Whiteout-Mail"><a href="https://whiteout.io/" target="_blank"><img src="img/provider/Whiteout-Mail.gif" width="200" height="70"><br />whiteout.io</a></td>
<td data-value="2014">2014</td>
<td>Germany</td>
<td data-value="2000">2 GB</td>
<td data-value="0"><span class="label label-warning">Free</span></td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<tr>
<tr>
<td data-value="mailbox.org"><a href="https://www.mailbox.org/" target="_blank"><img src="img/provider/mailbox.org.gif" width="200" height="70"><br />mailbox.org</a></td>
<td data-value="2014">2014</td>
<td>Germany</td>
<td data-value="2000">2 GB</td>
<td>12 €</td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<tr>
<td data-value="Posteo"><a href="https://www.posteo.de/" target="_blank"><img src="img/provider/Posteo.gif" width="200" height="70"><br />Posteo.de</a></td>
<td data-value="2009">2009</td>
<td>Germany</td>
<td data-value="2000">2 GB</td>
<td>12 €</td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<tr>
<td data-value="Runbox"><a href="https://runbox.com/" target="_blank"><img src="img/provider/runbox.gif" width="200" height="70"><br />Runbox.com</a></td>
<td data-value="1999">1999</td>
<td>Norway</td>
<td data-value="1000">1 GB</td>
<td>$ 19.95</td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<td data-value="Neomailbox"><a href="https://www.neomailbox.com/" target="_blank"><img src="img/provider/Neomailbox.gif" width="200" height="70"><br />Neomailbox.com</a></td>
<td data-value="2003">2003</td>
<td>Switzerland</td>
<td data-value="1000">1 GB</td>
<td>$ 49.95</td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<td data-value="CounterMail"><a href="https://www.countermail.com/" target="_blank"><img src="img/provider/CounterMail.gif" width="200" height="70"><br />CounterMail.com</a></td>
<td data-value="2010">2010</td>
<td>Sweden</td>
<td data-value="500">500 MB</td>
<td>$ 59</td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<td data-value="StartMail"><a href="https://www.startmail.com/" target="_blank"><img src="img/provider/StartMail.gif" width="200" height="70"><br />StartMail.com</a></td>
<td data-value="2014">2014</td>
<td>Netherlands</td>
<td data-value="10000">10 GB</td>
<td>$ 59.95</td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-success">Built-in</span></td>
<td><span class="label label-primary">No</span></td>
</tr>
<tr>
<td data-value="Kolab Now"><a href="https://www.kolabnow.com/" target="_blank"><img src="img/provider/Kolab-Now.gif" width="200" height="70"><br />KolabNow.com</a></td>
<td data-value="2010">2010</td>
<td>Switzerland</td>
<td data-value="2048">2 GB</td>
<td>$ 60</td>
<td><span class="label label-success">Accepted</span></td>
<td><span class="label label-primary">No</span></td>
<td><span class="label label-success">Yes</span></td>
</tr>
<tr>
<td data-value="CryptoHeaven"><a href="http://www.cryptoheaven.com/" target="_blank"><img src="img/provider/CryptoHeaven.gif" width="200" height="70"><br />CryptoHeaven.com</a></td>
<td data-value="2001">2001</td>