forked from prism-break/prism-break
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2316 lines (2265 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' />
<script>
/*
@licstart The following is the entire license notice for the
JavaScript code in this page.
Copyright (C) 2013 Peng Zhong
The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this page.
*/
</script>
<title class='i18n-title'>Opt out of global data surveillance programs like PRISM, XKeyscore, and Tempora - PRISM Break</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='description' class='i18n-meta-description' content='Opt out of global data surveillance programs like PRISM, XKeyscore, and Tempora. Stop governments from spying on you by encrypting your communications and ending your reliance on proprietary services.' />
<meta name='keywords' class='i18n-meta-keywords' content='PRISM, XKeyscore, NSA, free software, GHCQ, Tempora, surveillance' />
<meta name='author' content='Peng Zhong' />
<link rel='stylesheet' href='lib/css/screen.css' />
<link rel='apple-touch-icon-precomposed' sizes='144x144' href='lib/ico/apple-touch-icon-144-precomposed.png' />
<link rel='apple-touch-icon-precomposed' sizes='114x114' href='lib/ico/apple-touch-icon-114-precomposed.png' />
<link rel='apple-touch-icon-precomposed' sizes='72x72' href='lib/ico/apple-touch-icon-72-precomposed.png' />
<link rel='apple-touch-icon-precomposed' href='lib/ico/apple-touch-icon-57-precomposed.png' />
<link rel='shortcut icon' href='lib/ico/favicon.png' />
<link rel='icon' href='lib/ico/favicon.png' />
</head>
<body>
<div id='header'>
<div class='menu-trigger'><span class='border'><span class='btn'>☰</span></span></div>
<h1 id='brand'>
<strong>PRISM</strong>
<span class='lightning'>⚡</span>
Break
</h1>
<ul class='nav'>
<li class='links'>
<a class="plain" href='./media/'>
<span class='i18n-media'>Media</span>
</a>
</li>
<li class='links'>
<a class="plain" href='./privacy/'>
<span class='i18n-privacy-policy'>Privacy</span>
</a>
</li>
<li class='links'>
<a class="plain" href='./donate/'>
<span class='i18n-donate'>Donate</span> Bitcoin
</a>
</li>
<li class='links'>
<a class='plain' href='https://github.com/nylira/prism-break'>
<span class='i18n-contribute'>Contribute</span>
</a>
</li>
<li id='language'>
<select id='lang-select'>
<option id='lang-ar'>العربية</option>
<option id='lang-ca'>Català</option>
<option id='lang-de'>Deutsch</option>
<option id='lang-el'>ελληνικά</option>
<option id='lang-eo'>Esperanto</option>
<option id='lang-en' selected='selected'>English</option>
<option id='lang-es'>Español</option>
<option id='lang-fa'>فارسی</option>
<option id='lang-fi'>Suomi</option>
<option id='lang-fr'>Français</option>
<option id='lang-he'>עברית</option>
<option id='lang-hi'>हिन्दी</option>
<option id='lang-io'>Ido</option>
<option id='lang-it'>Italiano</option>
<option id='lang-ja'>日本語</option>
<option id='lang-nl'>Nederlands</option>
<option id='lang-no'>Norsk</option>
<option id='lang-pl'>Polski</option>
<option id='lang-pt'>Português</option>
<option id='lang-ru'>Русский</option>
<option id='lang-sr'>srpski</option>
<option id='lang-sr_cr'>српски</option>
<option id='lang-sv'>Svenska</option>
<option id='lang-zh_cn'>简体中文</option>
<option id='lang-zh_tw'>繁體中文</option>
</select>
</li>
</ul>
</div>
<div id='container'>
<p class='intro i18n-intro'><strong>Opt out of global data surveillance programs like <a href='https://en.wikipedia.org/wiki/PRISM_%28surveillance_program%29'>PRISM</a>, <a href='https://en.wikipedia.org/wiki/XKeyscore'>XKeyscore</a> and <a href='https://en.wikipedia.org/wiki/Tempora'>Tempora</a>.</strong> Stop governments from spying on you by encrypting your communications and ending your reliance on proprietary services.</p>
<div class='section' id='operating-system'>
<h2 class='i18n-operating-system'>Operating system</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/apple-osx.png' alt='' />
<div class='name'>Apple OS X</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google-chrome.png' alt='' />
<div class='name'>Google Chrome OS</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-windows.png' alt='' />
<div class='name'>Microsoft Windows</div>
</li>
</ul>
</div>
<div class='free'>
<h3>
<span class='i18n-free-alternative'>Free alternatives</span>
<label class='toggler'>
<input type="checkbox" class='toggle-section'>
<span class="i18n-show-all">show all</span>
</label>
</h3>
<ul>
<li><span class='h4 h4-gnulinux'>GNU/Linux</span></li>
<li><a href='http://www.debian.org/'>
<img class='logo' src='lib/img/free/debian.png' alt='' />
<h5>Debian</h5>
<p class='desc'>
<span class='i18n-debian-desc'>Strictly free, ethical GNU/Linux distribution.</span>
<span class='fs i18n-most-stable'>most stable</span>
</p>
</a></li>
<li><a href='https://fedoraproject.org/'>
<img class='logo' src='lib/img/free/fedora.png' alt='' />
<h5>Fedora</h5>
<p class='desc'>
<span class='i18n-fedora-desc'>Fast, stable and powerful GNU/Linux distribution.</span>
<span class='fs i18n-most-popular'>most popular</span>
</p>
</a></li>
<li><a href='https://www.gentoo.org/'>
<img class='logo' src='lib/img/free/gentoo.png' alt='' />
<h5>Gentoo</h5>
<p class='desc'>
<span class='i18n-gentoo-desc'>GNU/Linux distribution about choice, control and security.</span>
<span class="fs i18n-most-advanced">most advanced features</span>
</p>
</a></li>
<li class="hideable"><a href='http://www.gnewsense.org/'>
<img class='logo' src='lib/img/free/gnewsense.png' alt='' />
<h5>gNewSense</h5>
<p class='desc'>
<span class='i18n-gnewsense-desc'>Fully free software GNU/Linux distribution based on Debian.</span>
<span class='fs i18n-fsf-endorsed'>FSF endorsed</span>
</p>
</a></li>
<li><a href='http://www.linuxmint.com/download_lmde.php'>
<img class='logo' src='lib/img/free/linuxmint.png' alt='' />
<h5>Linux Mint Debian Edition</h5>
<p class='desc'>
<span class='i18n-linuxmint-desc'>Comfortable and easy-to-use GNU/Linux distribution based on Debian.</span>
<span class="fs i18n-newbies-choice">easiest to use</span>
</p>
</a></li>
<li class="hideable"><a href='https://www.opensuse.org/'>
<img class='logo' src='lib/img/free/opensuse.png' alt='' />
<h5>openSUSE</h5>
<p class='desc'>
<span class='i18n-opensuse-desc'>Stable, easy-to-use multi-purpose GNU/Linux distribution.</span>
<span class="fs i18n-newbies-choice">easiest to use</span>
</p>
</a></li>
<li class="hideable"><a href='https://parabolagnulinux.org/'>
<img class='logo' src='lib/img/free/parabola.png' alt='' />
<h5>Parabola</h5>
<p class='desc'>
<span class='i18n-parabola-desc'>Libre, lightweight, and
flexible GNU/Linux distribution based on Arch Linux.</span>
<span class='fs i18n-fsf-endorsed'>FSF endorsed</span>
</p>
</a></li>
<li class="hideable"><a href='http://qubes-os.org/trac'>
<img class='logo' src='lib/img/free/qubes.png' alt='' />
<h5>Qubes OS</h5>
<p class='desc'>
<span class='i18n-qubes-desc'>Fedora/Xen-based OS designed to provide strong security through isolation.</span>
</p>
</a></li>
<li><span class='h4 h4-bsd'>BSD</span></li>
<li class="hideable"><a href='http://www.freebsd.org/'>
<img class='logo' src='lib/img/free/freebsd.png' alt='' />
<h5>FreeBSD</h5>
<p class='desc'>
<span class='i18n-freebsd-desc'>A free BSD-derived operating system.</span>
</p>
</a></li>
<li><a href='http://www.openbsd.org/'>
<img class='logo' src='lib/img/free/openbsd.png' alt='' />
<h5>OpenBSD</h5>
<p class='desc'>
<span class='i18n-openbsd-desc'>A secure BSD operating system.</span>
<span class='fs i18n-most-paranoid'>most paranoid</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-operating-system-note'>
<p>Apple, Google, and Microsoft are allegedly a part of PRISM. Their proprietary operating systems cannot be trusted to safeguard your personal information from the NSA. We have two free alternatives: <strong><a href='https://www.gnu.org/distros/free-distros.html'>GNU/Linux</a></strong> and <strong><a href='https://en.wikipedia.org/wiki/Comparison_of_BSD_operating_systems'>BSD</a></strong>.</p>
<p class='hideable'>GNU/Linux has a much larger community to help you with the transition. It’s recommended that you begin your explorations by looking for a <a href='http://distrowatch.com/'>GNU/Linux distribution</a> that suits your needs.</p>
<p><strong>Debian</strong> has a long tradition of software freedom. Contributers have to sign a social contract and adhere to the ethical manifesto. Strict inclusion guidelines make sure that only certified open source software gets packaged in the main repositories.</p>
<p><strong>Gentoo</strong> describes itself as a meta-distribution. The source code is compiled to binary applications on the user's machine allowing near-unlimited adaptability and complete retraceability of the program logic.</p>
<p><strong>Linux Mint</strong> Debian Edition (LMDE) is probably the easiest-to-use distribution for people migrating from Microsoft Windows. However, note that LMDE <a href='http://community.linuxmint.com/idea/view/2144'>does not</a> support <a href='#hdd-ssd-encryption'>full disk encryption</a>.</p>
<p class='hideable'>Both <strong>Fedora</strong> and <strong>openSUSE</strong> are community editions that serve as the stable basis for enterprise ready GNU/Linux distributions with commercial support. Companies all over the world trust Red Hat Inc. and SUSE Linux GmbH because of their transparency throughout the whole development process.</p>
<p class='hideable'><strong>Parabola</strong> GNU/Linux is effectively 99% <a href='https://www.archlinux.org/'>Arch Linux</a> with a <a href='https://en.wikipedia.org/wiki/Binary_blob'>de-blobbed</a> kernel and a meta-package that blocks unfree licenses. Both of these features can be installed under Arch.</p>
<p>Canonical’s Ubuntu is not recommended by PRISM Break because it contains <a href='https://www.eff.org/deeplinks/2012/10/privacy-ubuntu-1210-amazon-ads-and-data-leaks'>Amazon ads and data leaks</a> by default. GNU/Linux distributions based on Ubuntu are also currently not recommended due to <a href='https://github.com/nylira/prism-break/issues/334'>several other reasons.</a></p>
</div>
</div>
</div>
<div class='section' id='live-cd'>
<h2 class='i18n-live-cd-title'>Live CDs & VM images</h2>
<div class='prop'> </div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><a href='http://dee.su/liberte'>
<img class='logo' src='lib/img/free/liberte.png' alt='' />
<h5>Liberté Linux</h5>
<p class='desc'>
<span class='i18n-liberte-desc'>Live CD/USB based on Hardened Gentoo designed as a communication aid in hostile environments.</span>
</p>
</a></li>
<li><a href='https://tails.boum.org/'>
<img class='logo' src='lib/img/free/tails.png' alt='' />
<h5>Tails</h5>
<p class='desc'>
<span class='i18n-tails-desc'>Live CD/USB based on Debian and Tor aimed at preserving your privacy and anonymity.</span>
</p>
</a></li>
<li><a href='https://whonix.org/wiki/Main_Page'>
<img class='logo' src='lib/img/free/whonix.png' alt='' />
<h5>Whonix</h5>
<p class='desc'>
<span class='i18n-whonix-desc'>VM-friendly OS based on Debian and Tor focused on anonymity, privacy and security.</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-live-cd-notes'>
<p>A live distribution like <strong>Tails</strong> or <strong>Liberté Linux</strong> is the fastest and easiest way to a secure operating system. All you have to do is create a bootable CD or USB drive with the files provided and you’re set. Everything else will be preconfigured for you.</p>
<p>A virtual machine (VM) image like <strong>Whonix</strong> is designed to be run inside of a virtualization package like <a href="https://www.virtualbox.org/">VirtualBox</a>. VirtualBox can be installed on Windows, Linux, OS X, and Solaris. This means that if you're stuck using Windows or OS X for whatever reason, you can install VirtualBox and use Whonix to increase your privacy and security.</p>
</div>
</div>
</div>
<div class='section' id='android'>
<h2 class='i18n-android'>Android</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/android.png' alt='' />
<div class='name'>Google Android</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google-play.png' alt='' />
<div class='name'>Google Play</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><h4 class='i18n-operating-system'>Operating system</h4></li>
<li><a href='http://www.cyanogenmod.org/'>
<img class='logo' src='lib/img/free/cyanogenmod.png' alt='' />
<h5>CyanogenMod</h5>
<p class='desc'>
<span class='i18n-cyanogenmod-desc'>Aftermarket firmware for Android devices.</span>
</p>
</a></li>
<li><a href='http://replicant.us/'>
<img class='logo' src='lib/img/free/replicant.png' alt='' />
<h5>Replicant</h5>
<p class='desc'>
<span class='i18n-replicant-desc'>Fully free Android distribution based on CyanogenMod.</span>
<span class='fs i18n-fsf-endorsed'>FSF endorsed</span>
</p>
</a></li>
<li><a href='https://www.mozilla.org/en-US/firefox/os/'>
<img class='logo' src='lib/img/free/firefox.png' alt='' />
<h5>Firefox OS</h5>
<p class='desc'>
<span class='i18n-firefoxos-desc'>Free and open source operating system for Android-compatible devices.</span>
</p>
</a></li>
<li><h4 class='i18n-digital-distribution'>Digital distribution</h4></li>
<li><a href='https://f-droid.org'>
<img class='logo' src='lib/img/free/fdroid.png' alt='F-Droid logo' />
<h5>F-Droid</h5>
<p class='desc'>
<span class='i18n-fdroid-desc'>Free and open source alternative to the Google Play app store for Android.</span>
<span class='fs i18n-fsf-endorsed'>FSF endorsed</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-android-note'>
<p>If <strong>Replicant</strong> supports your <a href='http://replicant.us/supported-phones/'>Android device</a>, you should definitely use it instead of Cyanogenmod, as Replicant is fully free and runs without relying on proprietary system code.</p>
<p><strong>CyanogenMod</strong> licensing:</p>
<blockquote><p>“CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.”</p>
<footer>— <cite><a href='https://en.wikipedia.org/wiki/CyanogenMod#Licensing'>Wikipedia</a></cite></footer></blockquote>
<p>Google Apps for Android (Gapps) are the proprietary applications by Google that come pre-installed with most Android devices. After flashing your firmware with either <strong>Cyanogenmod</strong> or <strong>Replicant</strong>, safeguard your data by not re-installing Google Apps on your phone.</p>
<p>Uninstall Gapps from any firmware with <a href='http://cidofficial.neocities.org/010.html'>this guide</a> by ciddaemon.</p>
</div>
</div>
</div>
<div class='section' id='mobile-os'>
<h2 class='i18n-mobile-os'>iOS & WP</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/ios.png' alt='' />
<div class='name'>Apple iOS</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-windows-phone.png' alt='' />
<div class='name'>Microsoft Windows Phone</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><a href='https://en.wikipedia.org/wiki/IPhone#Restrictions'>
<img class='logo' src='lib/img/free/prohibition.png' alt='' />
<h5 class='i18n-mobile-os-no-alt-title'>No alternative</h5>
<p class='desc'>
<span class='i18n-mobile-os-no-alt-desc'>Replace the device—these operating systems have no free alternatives.</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-mobile-os-note'>
<p><a href='https://en.wikipedia.org/wiki/IPhone#Restrictions'>iOS</a> and WP are proprietary operating systems whose source code are not available for auditing by third parties. You should entrust neither your communications nor your data to a closed source device.</p>
</div>
</div>
</div>
<div class='section' id='web-browser'>
<h2 class='i18n-web-browser'>Web browser</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/apple-safari.png' alt='' />
<div class='name'>Apple Safari</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google-chrome.png' alt='' />
<div class='name'>Google Chrome</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-ie.png' alt='' />
<div class='name'>Microsoft Internet Explorer</div>
</li>
<li>
<img class='logo' src='lib/img/prop/opera.png' alt='' />
<div class='name'>Opera</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><span class='h4 i18n-ip-hidden'>IP hidden</span></li>
<li><a href='https://www.torproject.org/index.html.en'>
<img class='logo' src='lib/img/free/tor.png' alt='' />
<h5>Tor Browser Bundle</h5>
<p class='desc'>
<span class='i18n-torbrowser-desc'>Encrypted, anonymous web browsing powered by the Tor network.</span>
</p>
</a></li>
<li><a href='https://anonymous-proxy-servers.net/index.html'>
<img class='logo' src='lib/img/free/jondonym.png' alt='' />
<h5>JonDonym</h5>
<p class='desc'>
<span class='i18n-jondonym-desc'>Private browsing with the JonDo IP anonymization service and JonDoFox profile for Firefox.</span>
<span class='i18n-jondonym-desc'></span>
</p>
</a></li>
<li><span class='h4 i18n-ip-exposed'>IP exposed</span></li>
<li><a href='https://www.mozilla.org/en-US/firefox/new/'>
<img class='logo' src='lib/img/free/firefox.png' alt='' />
<h5>Mozilla Firefox</h5>
<p class='desc'>
<span class='i18n-firefox-desc'>Fast, flexible and secure web browser with a vibrant add-on ecosystem.</span>
</p>
</a></li>
<li><span class='h4 h4-android'>Android</span></li>
<li><a href='https://www.torproject.org/docs/android'>
<img class='logo' src='lib/img/free/orbot.png' alt='' />
<h5>Orbot</h5>
<p class='desc'>
<span class='i18n-orbot-desc'>The features and functionality of Tor for Android.</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-web-browser-note'>
<p>Try to use <strong>Tor Browser Bundle</strong> (TBB) for all of your web surfing. It will offer you far better anonymity than any other browser. Make sure to <a href='https://www.torproject.org/docs/faq.html.en'>learn the basics of Tor</a> before using it. If the site you want to visit will not work in the TBB, try Firefox instead, but realize these browsers do not anonymize your IP by default.</p>
<p>TBB notes: Using the TBB to sign into websites that contain your real ID is counterproductive, and may trip the site's fraud protection. Make sure to check for HTTPS before signing in to a website through Tor. Signing into HTTP websites can result in your ID being captured by a Tor exit node.</p>
<p><strong>Firefox</strong> notes: This browser uses Google search by default: replace it with a more <a href='#web-search'>private alternative</a>. Another debranded alternative to Firefox is <a href='http://www.geticeweasel.org/'>Iceweasel</a>, a browser for Debian-based distributions.</p>
<p>Why are Chromium, SRWare Iron, et al. not recommended on PRISM Break? <a href='https://github.com/nylira/prism-break/issues/169'>More info here.</a></p>
</div>
</div>
</div>
<div class='section' id='browser-addons'>
<h2 class='i18n-web-browser-plugins'>Web browser add-ons</h2>
<div class='prop empty'> </div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><span class='h4 i18n-privacy-security'>Privacy & security</span></li>
<li>
<a href='https://addons.mozilla.org/en-us/firefox/addon/adblock-edge/'><img class='logo' src='lib/img/free/adblockedge.png' alt='' />
<h5>Adblock Edge</h5>
<p class='desc'>
<span class='i18n-adblockedge-desc'>Block advertisements and trackers across the web with filter subscriptions.</span>
</p>
</a></li>
<li>
<a href='https://disconnect.me/'><img class='logo' src='lib/img/free/disconnect.png' alt='' />
<h5>Disconnect</h5>
<p class='desc'>
<span class='i18n-disconnect-desc'>Visualize and block invisible tracking of your search and browsing history.</span>
</p>
</a></li>
<li>
<a href='https://www.eff.org/https-everywhere'><img class='logo' src='lib/img/free/httpseverywhere.png' alt='' />
<h5>HTTPS Everywhere</h5>
<p class='desc'>
<span class='i18n-httpseverywhere-desc'>Encrypt your communications from thousands of websites by enforcing HTTPS everywhere.</span>
</p>
</a></li>
<li>
<a href='http://noscript.net/'><img class='logo' src='lib/img/free/noscript.png' alt='' />
<h5>NoScript</h5>
<p class='desc'>
<span class='i18n-noscript-desc'>Only enable JavaScript, Java, and Flash for sites you trust.</span>
<span class='fs i18n-advanced'>advanced</span>
</p>
</a></li>
<li>
<a href='https://www.requestpolicy.com'><img class='logo' src='lib/img/free/requestpolicy.png' alt='' />
<h5>RequestPolicy</h5>
<p class='desc'>
<span class='i18n-requestpolicy-desc'>Control which cross-site requests are allowed by sites you visit.</span>
<span class='fs i18n-advanced'>advanced</span>
</p>
</a></li>
<li><span class='h4 i18n-instant-messaging'>Instant messaging</span></li>
<li>
<a href='https://crypto.cat/'><img class='logo' src='lib/img/free/cryptocat.png' alt='' />
<h5>CryptoCat</h5>
<p class='desc'>
<span class='i18n-cryptocat-desc'>Private and encrypted instant messaging within the web browser.</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li><span class='h4 i18n-email-encryption'>Email encryption</span></li>
<li>
<a href='http://www.mailvelope.com/'><img class='logo' src='lib/img/free/mailvelope.png' alt='' />
<h5>Mailvelope</h5>
<p class='desc'>
<span class='i18n-mailvelope-desc'>OpenPGP email encryption tool for major webmail services.</span>
<span class='fs'>PGP</span>
<span class='fs'>beta</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-web-browser-addons-note'>
<p>Installing your own add-ons into the Tor Browser is not recommended, as they may bypass Tor or otherwise harm your anonymity and privacy. Check the EFF's <a href='https://panopticlick.eff.org/'>Panopticlick</a> to see how trackable your browser configuration is by third parties.</p>
<p>If you're using a Firefox-based browser, you can safeguard your browsing habits and stop advertising companies from tracking you by installing <strong>Adblock Edge</strong>, <strong>Disconnect</strong>, and <strong>HTTPS Everywhere</strong>.</p>
<p>Install <strong>NoScript</strong> and enable ‘Forbid scripts globally’ to improve the security of your browser by preventing 0day JavaScript attacks. This is a drastic option as it will render many websites unusable as they rely heavily on JavaScript. NoScript offers a whitelist you can use to selectively enable JavaScript for sites you trust, but this is considered <a href='https://www.torproject.org/docs/faq.html.en#CanIBlockJS'>especially bad for your anonymity</a> if you're using NoScript with Tor.</p>
<p>Why is Adblock Plus not recommended? Adblock Plus shows “acceptable ads” by default, which works against the purpose of the add-on. Either disable acceptable ads or use the <strong>Adblock Edge</strong> fork instead.</p>
<p><a href='https://www.ghostery.com/'>Ghostery</a> is an alternative anti-tracker add-on to <strong>Disconnect</strong>. While the code is available, the license is currently proprietary.</p>
</div>
</div>
</div>
<div class='section' id='web-search'>
<h2 class='i18n-web-search'>Web search</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/google.png' alt='' />
<div class='name'>Google Search</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-bing.png' alt='' />
<div class='name'>Microsoft Bing</div>
</li>
<li>
<img class='logo' src='lib/img/prop/yahoo.png' alt='' />
<div class='name'>Yahoo! Search</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><span class='h4 i18n-service'>Service</span></li>
<li>
<a href='https://duckduckgo.com/'><img class='logo' src='lib/img/free/duckduckgo.png' alt='' />
<h5>DuckDuckGo</h5>
<p class='desc'>
<span class='i18n-duckduckgo-desc'>Anonymous, unlogged web searches.</span>
</p>
</a></li>
<li>
<a href='https://metager.de/en/'>
<img class='logo' src='lib/img/free/metager.png' alt='' />
<h5>MetaGer</h5>
<p class='desc'>
<span class='i18n-metager-desc'>Meta search engine that proxies your queries to multiple search providers.</span>
</p>
</a>
</li>
<li>
<a href='https://startpage.com/'><img class='logo' src='lib/img/free/startpage.png' alt='' />
<h5>Startpage</h5>
<p class='desc'>
<span class='i18n-startpage-desc'>Private, unlogged web searches.</span>
</p>
</a></li>
<li><span class='h4 i18n-p2p-software'>Peer to peer software</span></li>
<li>
<a href='http://www.seeks-project.info/site/'><img class='logo' src='lib/img/free/seeks.png' alt='' />
<h5>Seeks Project</h5>
<p class='desc'>
<span class='i18n-seeksproject-desc'>Open decentralized platform for collaborative search.</span>
</p>
</a></li>
<li>
<a href='http://www.yacy.net/'><img class='logo' src='lib/img/free/yacy.png' alt='' />
<h5>YaCy</h5>
<p class='desc'>
<span class='i18n-yacy-desc'>Decentralized web search.</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-web-search-note'>
<p><strong>DuckDuckGo</strong> is a software-as-a-service (SaaS) hosted around the world that provides you with anonymous search results from <a href='http://help.dukgo.com/customer/portal/articles/216399-sources'>these sources</a>. DDG open source components are <a href='https://github.com/duckduckgo'>available here</a>.</p>
<p>There is also a <strong>DuckDuckGo</strong> hidden service at <a href='http://3g2upl4pq6kufc4m.onion'>3g2upl4pq6kufc4m.onion</a> for Tor users.</p>
<p><strong>MetaGer</strong> is a SaaS by the German non-profit <a href='http://suma-ev.de/en/index.html'>SUMA e.V.</a> that provides you with anonymous meta search results.</p>
<p><strong>Startpage</strong> is a SaaS hosted in the USA and the Netherlands that provides you with anonymous Google search and image results through a free proxy.</p>
<p><a href='https://www.ixquick.com/'>Ixquick</a> (run by the same company as Startpage) is a meta search engine that returns combined results from nearly 100 sources - excluding Google.</p>
<p><strong>YaCy</strong> is a promising project that offers fully decentralized peer-to-peer search. The more people who start using it, the better the results will become.</p>
</div>
</div>
</div>
<div class='section' id='maps'>
<h2 class='i18n-maps'>Maps</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/apple.png' alt='' />
<div class='name'>Apple Maps</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google.png' alt='' />
<div class='name'>Google Maps</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google-earth.png' alt='' />
<div class='name'>Google Earth</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-bing.png' alt='' />
<div class='name'>Microsoft Bing Maps</div>
</li>
<li>
<img class='logo' src='lib/img/prop/yahoo.png' alt='' />
<div class='name'>Yahoo! Maps</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><span class='h4 i18n-service'>Service</span></li>
<li>
<a href='http://www.openstreetmap.org/'><img class='logo' src='lib/img/free/openstreetmap.png' alt='' />
<h5>OpenStreetMap</h5>
<p class='desc'>
<span class='i18n-openstreetmap-desc'>Free, collaborative world wide map.</span>
</p>
</a>
</li>
<li><span class='h4 i18n-software'>Software</span></li>
<li>
<a href='http://marble.kde.org/'><img class='logo' src='lib/img/free/marble.png' alt='' />
<h5>Marble</h5>
<p class='desc'>
<span class='i18n-marble-desc'>Free virtual globe and world atlas.</span>
</p>
</a>
</li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-maps-note'>
<blockquote><p>“If you spend time contributing to OpenStreetMap you are helping a good cause, and building a geographic database of the world which is free and open for all and forever.”</p>
<footer>— <cite><a href='http://wiki.openstreetmap.org/wiki/Google_Map_Maker'>OpenStreetMap Wiki</a></cite></footer></blockquote>
</div>
</div>
</div>
<div class='section' id='email-service'>
<h2 class='i18n-email-service'>Email service</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/google-mail.png' alt='' />
<div class='name'>Google Gmail</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-outlook.png' alt='' />
<div class='name'>Microsoft Outlook.com</div>
</li>
<li>
<img class='logo' src='lib/img/prop/yahoo.png' alt='' />
<div class='name'>Yahoo! Mail</div>
</li>
</ul>
</div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li><span class='h4 i18n-service'>Service</span></li>
<li>
<a href='http://www.autistici.org/en/index.html'><img class='logo' src='lib/img/free/autistici.png' alt='' />
<h5>Autistici/Inventati</h5>
<p class='desc'>
<span class='i18n-autistici-desc'>A full range of privacy-aware services including hosting, VPNs, email, IM, and more.</span>
<span class='fs'><span class='i18n-approval-required'>approval required</span></span>
</p>
</a></li>
<li>
<a href='https://MyKolab.com'><img class='logo' src='lib/img/free/mykolabcom.png' alt='' />
<h5>MyKolab</h5>
<p class='desc'>
<span class='i18n-mykolabcom-desc'>Secure, private Kolab accounts hosted in Switzerland. Email from 4.85 CHF, full groupware from 9.70 CHF per month.</span>
<span class='fs i18n-paid-service'>paid service</span>
</p>
</a></li>
<li>
<a href='https://riseup.net/en'><img class='logo' src='lib/img/free/riseup.png' alt='' />
<h5>Riseup</h5>
<p class='desc'>
<span class='i18n-riseup-desc'>Secure communication tools for people working on liberatory social change.</span>
<span class='fs'><span class='i18n-invite-only'>invitation required</span></span>
<span class='fs'><span class='i18n-usa-hosted'>USA hosted</span></span>
</p>
</a></li>
<li><span class='h4 i18n-p2p-software'>Peer to peer software</span></li>
<li>
<a href='http://retroshare.sourceforge.net/'><img class='logo' src='lib/img/free/retroshare.png' alt='' />
<h5>RetroShare</h5>
<p class='desc'>
<span class='i18n-retroshare-desc'>Secure P2P communications platform offering IM, forums, VoIP, file sharing, and more.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-email-service-note'>
<p>Here are some transparently run, privacy-oriented email providers that you can use in place of Gmail or Hotmail. Please decide for yourself whether if you trust them with your data. If you have the technical aptitude, consider <a href='#mail-server'>running your own mail server</a>.</p>
<p><strong>MyKolab</strong> is hosted in Switzerland and benefits from the <a href='https://MyKolab.com/privacy'>strong Swiss privacy laws</a>. It is run exclusively with free software and using the service supports the development of <strong>Kolab</strong>. Also, it lets you export all your data at any time.</p>
<p><strong>RetroShare</strong> is simple way to run your own peer to peer messaging network without need of a central server. Please note however that its encryption has not been thoroughly audited by security professionals.</p>
<p>Why not Hushmail? See <a href='https://en.wikipedia.org/wiki/Hushmail#Compromises_to_email_privacy'>'compromises to email privacy'</a>.</p>
<p>For more discussion about safe email providers, please see <a href='https://github.com/nylira/prism-break/issues/461'>issue #461</a>.</p>
</div>
</div>
</div>
<div class='section' id='email-client'>
<h2 class='i18n-email-client'>Email client</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/apple.png' alt='' />
<div class='name'>Apple OS X Mail</div>
</li>
<li>
<img class='logo' src='lib/img/prop/ms-outlook.png' alt='' />
<div class='name'>Microsoft Office Outlook</div>
</li>
</ul>
</div>
<div class='free'>
<h3>
<span class='i18n-free-alternative'>Free alternatives</span>
<label class='toggler'>
<input type="checkbox" class='toggle-section'>
<span class="i18n-show-all">show all</span>
</label>
</h3>
<ul>
<li>
<a href='https://www.mozilla.org/en-US/thunderbird/'><img class='logo' src='lib/img/free/thunderbird.png' alt='' />
<h5>Mozilla Thunderbird</h5>
<p class='desc'>
<span class='i18n-thunderbird-desc'>Multi-platform email application with mail encryption through the Enigmail add-on.</span>
</p>
</a></li>
<li class='hideable'>
<a href='https://directory.fsf.org/wiki/Icedove'><img class='logo' src='lib/img/free/icedove.png' alt='' />
<h5>Icedove</h5>
<p class='desc'>
<span class='i18n-icedove-desc'>Libre edition of Mozilla Thunderbird for Debian GNU/Linux—mail encryption via Enigmail.</span>
</p>
</a></li>
<li class='plugin'>
<a href='http://www.enigmail.org/'><img class='logo' src='lib/img/free/enigmail.png' alt='' />
<h5>Enigmail</h5>
<p class='desc'>
<span class='i18n-enigmail-desc'>OpenPGP email encryption add-on for Thunderbird and Icedove.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li class='plugin'>
<a href='https://trac.torproject.org/projects/tor/wiki/torbirdy'>
<img class='logo' src='lib/img/free/tor.png' alt='' />
<h5>TorBirdy</h5>
<p class='desc'>
<span class='i18n-torbirdy-desc'>Add-on that makes Thunderbird and Icedove connect through Tor.</span>
<span class="fs"><span class='i18n-experimental'>experimental</span></span>
</p>
</a></li>
<li>
<a href='http://www.claws-mail.org/'><img class='logo' src='lib/img/free/clawsmail.png' alt='' />
<h5>Claws Mail</h5>
<p class='desc'>
<span class='i18n-clawsmail-desc'>Lightweight, featureful email application for multiple platforms with built-in PGP support.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li class='hideable'>
<a href='https://projects.gnome.org/evolution/'><img class='logo' src='lib/img/free/evolution.png' alt='' />
<h5>Evolution</h5>
<p class='desc'>
<span class='i18n-evolution-desc'>Email, address book, and calendar application for the GNOME desktop with PGP support.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li class='hideable'>
<a href='http://www.kontact.org'><img class='logo' src='lib/img/free/kontact.png' alt='' />
<h5>Kontact</h5>
<p class='desc'>
<span class='i18n-kontact-desc'>Email, address books, calendars, and more for the K Desktop Environment (KDE) with PGP support.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li>
<a href='http://sylpheed.sraoss.jp/en/'><img class='logo' src='lib/img/free/sylpheed.png' alt='' />
<h5>Sylpheed</h5>
<p class='desc'>
<span class='i18n-sylpheed-desc'>Lightweight, user-friendly email application for multiple platforms with built-in PGP support.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li><span class='h4 h4-android'>Android</span></li>
<li>
<a href='https://code.google.com/p/k9mail/'><img class='logo' src='lib/img/free/k9mail.png' alt='' />
<h5>K-9 Mail</h5>
<p class='desc'>
<span class='i18n-k9mail-desc'>Email application for Android devices with built-in PGP support.</span>
<span class='fs'>PGP</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-email-client-note'>
<p>Switching from a proprietary service like Gmail to one of the more transparently-run email services on PRISM Break is the first step to a secure email account.</p>
<p>The second step is getting you and your contacts to encrypt your plain text messages with <a href='#email-encryption'>PGP encryption</a>. This section contains free email clients that support PGP.</p>
<p><a href='https://securityinabox.org/en/thunderbird_main'>Here is a guide</a> by Security In A Box to encrypting your email with <strong>Mozilla Thunderbird</strong>, <strong>GNU Privacy Guard (GPG)</strong>, and <strong>Enigmail</strong>.</p>
<p><a href='https://en.wikipedia.org/wiki/Icedove'>Find out more</a> about the differences between <strong>Mozilla Thunderbird</strong> and <strong>Icedove</strong>.</p>
</div>
</div>
</div>
<div class='section' id='email-encryption'>
<h2 class='i18n-email-encryption'>Email encryption</h2>
<div class='prop empty'> </div>
<div class='free'><h3 class='i18n-free-alternative'>Free alternatives</h3>
<ul>
<li>
<a href='http://www.gnupg.org/'><img class='logo' src='lib/img/free/gnupg.png' alt='' />
<h5>GNU Privacy Guard - GPG</h5>
<p class='desc'>
<span class='i18n-gnuprivacyguard-desc'>OpenPGP implementation for numerous frontends, including Thunderbird/Icedove.</span>
</p>
</a></li>
<li>
<a href='https://gpgtools.org/gpgmail/index.html'><img class='logo' src='lib/img/free/gpgmail.png' alt='' />
<h5>GPGMail</h5>
<p class='desc'>
<span class='i18n-gpgmail-desc'>OpenPGP add-on for Apple OS X Mail.</span>
</p>
</a></li>
<li><span class='h4 h4-android'>Android</span></li>
<li>
<a href='http://www.thialfihar.org/projects/apg/'><img class='logo' src='lib/img/free/apg.png' alt='' />
<h5>APG</h5>
<p class='desc'>
<span class='i18n-apg-desc'>OpenPGP implementation for Android.</span>
</p>
</a></li>
</ul>
</div>
<div class='notes'><h3 class='i18n-notes'>Notes</h3>
<div class='i18n-email-encryption-note'>
<blockquote><p>“Pretty Good Privacy (PGP) is a data encryption and decryption computer program that provides cryptographic privacy and authentication for data communication. PGP is often used for signing, encrypting and decrypting texts, e-mails, files, directories and whole disk partitions to increase the security of e-mail communications.”</p>
<footer>— <cite><a href='https://en.wikipedia.org/wiki/Pretty_Good_Privacy'>Wikipedia</a></cite></footer></blockquote>
<p>PRISM Break does not recommended S/MIME email encryption because of its reliance on third-party certificates from central authorities. Read more <a href='http://www.enigmail.net/forum/viewtopic.php?f=7&t=67'>here</a>.</p>
<p><strong>APG</strong> has not been updated in three years. Experimental PGP projects worth looking at are <a href='https://github.com/dschuermann/openpgp-keychain'>OpenPGP Keychain</a> (a APG fork) and <a href='https://dev.guardianproject.info/projects/gpgandroid/wiki'>GnuPG for Android</a> by the Guardian Project.</p>
</div>
</div>
</div>
<div class='section' id='instant-messaging'>
<h2 class='i18n-instant-messaging'>Instant messaging</h2>
<div class='prop'><h3 class='prop i18n-proprietary'>Proprietary</h3>
<ul>
<li>
<img class='logo' src='lib/img/prop/aim.png' alt='' />
<div class='name'>AOL Instant Messenger</div>
</li>
<li>
<img class='logo' src='lib/img/prop/apple-messages.png' alt='' />
<div class='name'>Apple OS X Messages</div>
</li>
<li>
<img class='logo' src='lib/img/prop/google.png' alt='' />
<div class='name'>Google Talk</div>
</li>
<li>
<img class='logo' src='lib/img/prop/trillian.png' alt='' />
<div class='name'>Trillian</div>
</li>
<li>
<img class='logo' src='lib/img/prop/viber.png' alt='' />
<div class='name'>Viber Messenger</div>
</li>
<li>
<img class='logo' src='lib/img/prop/whatsapp-android.png' alt='' />
<div class='name'>WhatsApp Messenger</div>
</li>
<li>
<img class='logo' src='lib/img/prop/yahoo.png' alt='' />
<div class='name'>Yahoo! Messenger</div>
</li>
</ul>
</div>
<div class='free'>
<h3>
<span class='i18n-free-alternative'>Free alternatives</span>
<label class='toggler'>
<input type="checkbox" class='toggle-section'>
<span class="i18n-show-all">show all</span>
</label>
</h3>
<ul>
<li>
<a href='https://www.pidgin.im/'><img class='logo' src='lib/img/free/pidgin.png' alt='' />
<h5>Pidgin</h5>
<p class='desc'>
<span class='i18n-pidgin-desc'>Free universal instant messaging client.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li class="plugin">
<a href='http://www.cypherpunks.ca/otr/'><img class='logo' src='lib/img/free/otr.png' alt='' />
<h5>Off-the-Record Messaging - OTR</h5>
<p class='desc'>
<span class='i18n-otr-desc'>Install and enable this plugin in Pidgin for encrypted chat.</span>
</p>
</a></li>
<li class='hideable'>
<a href='https://adium.im/'><img class='logo' src='lib/img/free/adium.png' alt='' />
<h5>Adium</h5>
<p class='desc'>
<span class='i18n-adium-desc'>Multiprotocol chat client for Apple OS X with OTR features.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li class='hideable'>
<a href='http://gajim.org/'><img class='logo' src='lib/img/free/gajim.png' alt='' />
<h5>Gajim</h5>
<p class='desc'>
<span class='i18n-gajim-desc'>Light and fast IM client for GNU/Linux and Windows—OTR support via plugin.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li class='hideable'>
<a href='http://psi-plus.com/'>
<img class='logo' src='lib/img/free/psiplus.png' alt='' />
<h5>Psi Plus</h5>
<p class='desc'>
<span class='i18n-psiplus-desc'>Multi-platform IM client for power users with built-in OTR support.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
<span class='fs'>PGP</span>
</p>
</a></li>
<li>
<a href='https://github.com/prof7bit/TorChat/wiki'><img class='logo' src='lib/img/free/torchat.png' alt='' />
<h5>TorChat</h5>
<p class='desc'>
<span class='i18n-torchat-desc'>Anonymous, decentralized P2P chat built on Tor Hidden Services.</span>
</p>
</a></li>
<li><span class='h4 i18n-irc'>IRC</span></li>
<li>
<a href='http://www.bitlbee.org/'><img class='logo' src='lib/img/free/bitlbee.png' alt='' />
<h5>BitlBee</h5>
<p class='desc'>
<span class='i18n-bitlbee-desc'>IRC instant messaging gateway that supports a bunch of protocols.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li class='hideable'>
<a href='http://hexchat.github.io/'><img class='logo' src='lib/img/free/hexchat.png' alt='' />
<h5>HexChat</h5>
<p class='desc'>
<span class='i18n-hexchat-desc'>Cross-platform IRC client.</span>
</p>
</a></li>
<li class='hideable'>
<a href='http://www.weechat.org/'><img class='logo' src='lib/img/free/weechat.png' alt='' />
<h5>WeeChat</h5>
<p class='desc'>
<span class='i18n-weechat-desc'>Extensible and customisable CLI chat client for IRC and XMPP.</span>
<span class='fs'>XMPP</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li><span class='h4 h4-android'>Android</span></li>
<li>
<a href='https://guardianproject.info/apps/gibber/'><img class='logo' src='lib/img/free/gibberbot.png' alt='' />
<h5>Gibberbot</h5>
<p class='desc'>
<span class='i18n-gibberbot-desc'>Private, secure OTR messaging for Android.</span>
<span class='fs'>OTR</span>
</p>
</a></li>
<li class='hideable'>
<a href='https://www.surespot.me'><img class='logo' src='lib/img/free/surespot.png' alt='' />
<h5>Surespot</h5>
<p class='desc'>
<span class='i18n-surespot-desc'>Free, open-source, end-to-end encrypted messaging for Android.</span>
</p>
</a></li>
<li>
<a href='https://whispersystems.org/#encrypted_texts'><img class='logo' src='lib/img/free/textsecure.png' alt='' />
<h5>TextSecure</h5>
<p class='desc'>
<span class='i18n-textsecure-desc'>Secure SMS/MMS communication for Android.</span>
</p>
</a></li>
<li>
<a href='http://www.xabber.com/'><img class='logo' src='lib/img/free/xabber.png' alt='' />
<h5>Xabber</h5>
<p class='desc'>
<span class='i18n-xabber-desc'>OTR-encrypted instant messaging for Android.</span>
<span class='fs'>XMPP</span>