-
Notifications
You must be signed in to change notification settings - Fork 8
/
porting-pets.html.bak
1265 lines (679 loc) · 38 KB
/
porting-pets.html.bak
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>
<head>
<meta charset="utf-8"/>
<title>The Tor BSD Diversity Project</title>
<link type="text/css" rel="stylesheet" href="torbsd.css"/>
<meta name="author" content="gman"/>
<meta name="editors" content="attila"/>
<meta name="data" content="2015-11-17"/>
<meta name="x-note" content="These lines at the top are multimarkdown metadata; leave them."/>
<meta name="sep" content="&#8916;"/>
</head>
<body>
<h1 id="thetorbsddiversityprojecttdp"><a href="index.html">The Tor BSD Diversity Project (TDP)</a></h1>
<p>&#8916; <a href="blog.html">Blog</a> &#8916; <a href="faq.html">FAQ</a> &#8916; <a href="resources.html">Resources</a> &#8916; <a href="https://github.com/torbsd/">GitHub</a> &#8916; <a href="contact.html">Contact</a> &#8916; <a href="http://bptfp7py2wclht26.onion/">TDP Onion</a> &#8916;</p>
<p><strong><a href="projects.html">The TDP Projects</a>:</strong><br/>
&#8916; <a href="https://github.com/torbsd/openbsd-ports/">Tor Browser for OpenBSD</a> &#8916; <a href="relay-guides.html">BSD Relay Guides</a> &#8916; <a href="corp-relays.html">Corporate Relays</a> &#8916; <a href="porting-pets.html">Ports for PETs</a> &#8916; <a href="oostats.html">Statistics</a> &#8916;</p>
<h2 id="portingtargetsforpets">Porting Targets for PETs</h2>
<p>Over the past few years, concerns about privacy spawned a long list of applications. Most originated as efforts to provide secure, open-source alternatives to common, proprietary solutions. Jitsi and Ricochet, for instance, arose as attempted replacements for Skype.</p>
<p>This is a list of some of those alternate tools. Most have not been ported to any of the BSDs. Some probably <em>shouldn’t</em> be ported to the BSDs or any other sane operating system. Some are unmaintained, or unmaintainable. Is shells/<a href="https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=bash/">bash</a> a dependency? Maybe a patch should be sent upstream before even considering a port. But this list is an attempt to summarize the applications and provide relevant information for any *BSD developer interested in reviewing or porting them. <strong>No endorsements should be assumed from this list.</strong></p>
<p>The listed information should be considered a guide but should be confirmed due to any inaccuracies or changes. Please use our <a href="https://github.com/torbsd/torbsd.github.io/issues/">GitHub account’s torbsd.github.io “issues” page for any input</a>.</p>
<p><em>Just because it says “yes” next to a BSD ports system doesn’t mean it’s current or works correctly</em></p>
<p>These are loose categorizations of the ports. Where there is no consensus among the BSDs on category, we chose whichever was already ported, then the more specific category, for example <strong>net-p2p</strong> over <strong>net</strong>. For the ports we are unsure how to categorize or haven’t approached yet, we have put them under <a href="#misc">misc</a>. But overall, the categories are just a basic guide.</p>
<h2 id="petsrelatedopensourcesoftwarepackages">PETs Related Open Source Software Packages</h2>
<p><a href="#editors">editors</a> &#8916; <a href="#graphics">graphics</a> &#8916; <a href="#mail">mail</a> &#8916; <a href="#misc">misc</a> &#8916; <a href="#net">net</a> &#8916; <a href="#net-im">net-im</a> &#8916; <a href="#net-p2p">net-p2p</a> &#8916; <a href="#security">security</a> &#8916; <a href="#sysutils">sysutils</a> &#8916; <a href="#www">www</a></p>
<dl>
<dt><strong>tool-name</strong></dt>
<dd><strong>Description</strong>: <em>short-descr</em></dd>
<dd><strong>Site</strong>: <em>www-site</em></dd>
<dd><strong>License</strong>: <em>explicit license stated, along with URL to the actual</em></dd>
<dd><strong>Source</strong>: <em>url to distfile</em></dd>
<dd><strong>Version</strong>: <em>version information, e.g. current stable, development release, …</em></dd>
<dd><strong>FreeBSD</strong>: <a href="https://svnweb.freebsd.org/ports/head/">FreeBSD ports system</a></dd>
<dd><strong>OpenBSD</strong>: <a href="http://ftp.openbsd.org/pub/OpenBSD/snapshots/packages/amd64/">OpenBSD packages</a></dd>
<dd><strong>NetBSD</strong>: <a href="http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/README-all.html">NetBSD’s pkgsrc</a> for multiple operating systems</dd>
<dd><strong>DragonFly</strong>: <a href="http://avalon.dragonflybsd.org/dports/dragonfly:5.2:x86:64/LATEST/All/">DragonFly BSD’s ports</a>, similar to FreeBSD</dd>
<dd><strong>Notes</strong>: <em>etc…</em></dd>
</dl>
<h3 id="aideditorseditorsa"><a id="editors">editors</a></h3>
<dl>
<dt><a id="pkg-autocanary"><strong>AutoCanary</strong></a></dt>
<dd>Description: desktop application for generating machine-readable, signed canary statements</dd>
<dd>Site: <a href="https://code.firstlook.media/projects/autocanary.html">https://code.firstlook.media/projects/autocanary.html</a></dd>
<dd>License: <a href="https://github.com/firstlook/autocanary/blob/master/LICENSE.md">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/firstlook/autocanary/">https://github.com/firstlook/autocanary/</a></dd>
<dd>Version: 0.2.0</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>NetBSD: no</dd>
<dd>DragonFly: no</dd>
<dd>Notes: <a href="https://en.wikipedia.org/wiki/Warrant_canary/">Wikipedia on Warrant Canaries</a>. Not portable as-is, with builds only for Windows, OSX and Debian.</dd>
<dt><a id="pkg-ethercalc"><strong>EtherCalc</strong></a></dt>
<dd>Description: collaborative spreadsheet application</dd>
<dd>Site: <a href="https://ethercalc.net/">https://ethercalc.net/</a></dd>
<dd>License: <a href="https://github.com/audreyt/ethercalc/blob/master/LICENSE.txt">CPAL 1.0 Artistic License 2.0</a></dd>
<dd>Source: <a href="https://github.com/audreyt/ethercalc/">https://github.com/audreyt/ethercalc/</a></dd>
<dd>Version: 0.20170704.0</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>NetBSD: no</dd>
<dd>DragonFly: no</dd>
<dd>Notes:</dd>
<dt><a id="pkg-etherpad"><strong>Etherpad</strong></a></dt>
<dd>Description: collaborative editing application</dd>
<dd>Site: <a href="http://etherpad.org/">http://etherpad.org/</a></dd>
<dd>License: <a href="https://github.com/ether/etherpad-lite/blob/develop/LICENSE/">Apache 2.0</a></dd>
<dd>Source: <a href="https://github.com/ether/etherpad-lite/">https://github.com/ether/etherpad-lite/</a></dd>
<dd>Version: 1.6.1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>NetBSD: no</dd>
<dd>DragonFly: no</dd>
<dd>Notes: example at <a href="https://pad.riseup.net/">RiseUP.net</a></dd>
</dl>
<h3 id="aidgraphicsgraphicsa"><a id="graphics">graphics</a></h3>
<dl>
<dt><a id="pkg-exiftool"><strong>ExifTool</strong></a></dt>
<dd>Description: tool for editing, reading, writing metadata on a variety of file types</dd>
<dd>Site: <a href="http://owl.phy.queensu.ca/~phil/exiftool/">http://owl.phy.queensu.ca/~phil/exiftool/</a></dd>
<dd>License: <a href="http://owl.phy.queensu.ca/~phil/exiftool/#license">Perl</a></dd>
<dd>Source: <a href="http://owl.phy.queensu.ca/~phil/exiftool/Image-ExifTool-10.60.tar.gz">http://owl.phy.queensu.ca/~phil/exiftool/Image-ExifTool–10.60.tar.gz</a></dd>
<dd>Version: 10.60</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>NetBSD: yes</dd>
<dd>DragonFly: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-exiv2"><strong>Exiv2</strong></a></dt>
<dd>Description: command-line utility to manage image metadata</dd>
<dd>Site: <a href="http://www.exiv2.org/">http://www.exiv2.org/</a></dd>
<dd>License: <a href="http://www.exiv2.org/download.html#license">GPLv2 or commercial</a></dd>
<dd>Source: <a href="https://github.com/Exiv2/exiv2.git">https://github.com/Exiv2/exiv2.git</a></dd>
<dd>Version: 0.26</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>NetBSD: yes</dd>
<dd>DragonFly: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-jhead"><strong>jhead</strong></a></dt>
<dd>Description: tool for manipulating JPEG EXIF files</dd>
<dd>Site: <a href="http://www.sentex.net/~mwandel/jhead/">http://www.sentex.net/~mwandel/jhead/</a></dd>
<dd>License: <a href="http://www.sentex.net/~mwandel/jhead/">Public Domain</a></dd>
<dd>Source: <a href="http://www.sentex.net/~mwandel/jhead/jhead-3.00.tar.gz">http://www.sentex.net/~mwandel/jhead/jhead–3.00.tar.gz</a></dd>
<dd>Version: 3.00</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-mat"><strong>MAT</strong></a></dt>
<dd>Description: tool for removing metadata</dd>
<dd>Site: <a href="http://mat.boum.org/">http://mat.boum.org/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/user/jvoisin/mat.git/tree/LICENSE/">GPLv2</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/user/jvoisin/mat.git">https://gitweb.torproject.org/user/jvoisin/mat.git</a></dd>
<dd>Version: 0.6.1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: command-line and GUI, with a library. Uses Linux shred(1)</dd>
<dt><a id="pkg-pdf-redact-tools"><strong>pdf-redact-tools</strong></a></dt>
<dd>Description: tools to redact and strip metadata from documents</dd>
<dd>Site: <a href="https://code.firstlook.media/projects/pdf-redact-tools.html">https://code.firstlook.media/projects/pdf-redact-tools.html</a></dd>
<dd>License: <a href="https://github.com/firstlook/pdf-redact-tools/blob/master/LICENSE">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/firstlook/pdf-redact-tools/">https://github.com/firstlook/pdf-redact-tools/</a></dd>
<dd>Version: 0.1.2</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
</dl>
<h3 id="aidmailmaila"><a id="mail">mail</a></h3>
<dl>
<dt><a id="pkg-mailpile"><strong>Mailpile</strong></a></dt>
<dd>Description: fast webmail client with built-in security features</dd>
<dd>Site: <a href="https://www.mailpile.is/">https://www.mailpile.is/</a></dd>
<dd>License: <a href="https://github.com/mailpile/Mailpile/">AGPLv3</a></dd>
<dd>Source: <a href="https://github.com/mailpile/Mailpile/">https://github.com/mailpile/Mailpile/</a></dd>
<dd>Version: 0.5.2</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-mixmaster"><strong>Mixmaster</strong></a></dt>
<dd>Description: type II anonymous remailer</dd>
<dd>Site: <a href="http://mixmaster.sourceforge.net/">http://mixmaster.sourceforge.net/</a></dd>
<dd>License: <a href="https://anonscm.debian.org/viewvc/pkg-mixmaster/trunk/Mix/COPYRIGHT?view=markup">MIT</a></dd>
<dd>Source: <a href="http://sourceforge.net/projects/mixmaster/files/latest/download?source=files">http://sourceforge.net/projects/mixmaster/files/latest/download?source=files</a></dd>
<dd>Version: 3.0</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: not under active development.</dd>
<dt><a id="pkg-mixminion"><strong>Mixminion</strong></a></dt>
<dd>Description: type III anonymous remailer</dd>
<dd>Site: <a href="http://mixminion.net">http://mixminion.net</a></dd>
<dd>License: <a href="https://github.com/nmathewson/mixminion/blob/master/LICENSE/">MIT</a></dd>
<dd>Source: <a href="https://github.com/nmathewson/mixminion/">https://github.com/nmathewson/mixminion/</a></dd>
<dd>Version: 0.0.8alpha3</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: no</dd>
<dd>notes: not under active development.</dd>
<dt><a id="pkg-torbirdy"><strong>Torbirdy</strong></a></dt>
<dd>Description: Thunderbird add-on for using accessing email over the Tor network</dd>
<dd>Site: <a href="https://trac.torproject.org/projects/tor/wiki/torbirdy/">https://trac.torproject.org/projects/tor/wiki/torbirdy/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/torbirdy.git/tree/LICENSE">BSD</a></dd>
<dd>Source <a href="https://gitweb.torproject.org/torbirdy.git">https://gitweb.torproject.org/torbirdy.git</a></dd>
<dd>Version: 0.2.3</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: should Mozilla add-ons be their own ports? What about installs which require shells/<a href="https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=bash">bash</a> as dependencies?</dd>
</dl>
<h3 id="aidmiscmisca"><a id="misc">misc</a></h3>
<dl>
<dt><a id="pkg-kontalk"><strong>Kontalk server</strong></a></dt>
<dd>Description: encrypted communications platform</dd>
<dd>Site: <a href="http://www.kontalk.org/">http://www.kontalk.org/</a></dd>
<dd>License: GPLv3 check each component under GitHub account</dd>
<dd>Source: <a href="https://github.com/kontalk/">https://github.com/kontalk/</a></dd>
<dd>Version: various</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: client and server component of Kontalk XMPP client</dd>
<dt><a id="pkg-leap"><strong>LEAP</strong></a></dt>
<dd>Description: secure server client platform</dd>
<dd>Site: <a href="https://leap.se/">https://leap.se/</a></dd>
<dd>License: GPLv3 https://leap.se/git/{bitmask_client.git,leap_platform,git,etc}/blob/HEAD:/LICENSE</dd>
<dd>Source: <a href="https://leap.se/git/">https://leap.se/git/</a></dd>
<dd>Version: various</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: various components would needed for full porting, but starting point is likely the platform.</dd>
<dt><a id="pkg-libertree"><strong>Libertree</strong></a></dt>
<dd>Description: open-source platform for creating private social networks</dd>
<dd>Site: <a href="http://www.libertree.org/">http://www.libertree.org/</a></dd>
<dd>License: <a href="https://github.com/Libertree/libertree/blob/master/LICENCE">GNU Affero</a></dd>
<dd>Source: <a href="https://github.com/LiberTree/libertree/">https://github.com/LiberTree/libertree/</a></dd>
<dd>Version: n/a</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: no releases yet and no commits since 2015, and www site dead</dd>
<dt><a id="pkg-martus-desktop"><strong>Martus Desktop</strong></a></dt>
<dd>Description: platform for collecting, safeguarding, organizing and sharing info</dd>
<dd>Site: <a href="https://www.martus.org/">https://www.martus.org/</a></dd>
<dd>License: ???</dd>
<dd>Source: <a href="https://martus.org/installers/Martus-Source-5.2.0.zip">https://martus.org/installers/Martus-Source–5.2.0.zip</a></dd>
<dd>Version: 5.2.0</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-martus-server"><strong>Martus Server</strong></a></dt>
<dd>Description: platform for collecting, safeguarding, organizing and sharing info</dd>
<dd>Site: <a href="https://www.martus.org/">https://www.martus.org/</a></dd>
<dd>License: ??</dd>
<dd>Source: <a href="https://code.google.com/archive/p/martus/source#hg/source/org/martus/server">https://code.google.com/archive/p/martus/source#hg/source/org/martus/server</a></dd>
<dd>Version: ??</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-securedrop"><strong>SecureDrop</strong></a></dt>
<dd>Description: open-source whistleblower submission system</dd>
<dd>Site: <a href="https://securedrop.org">https://securedrop.org/</a></dd>
<dd>License: <a href="https://github.com/freedomofpress/securedrop/blob/develop/LICENSE">AGPL</a></dd>
<dd>Source: <a href="https://github.com/freedomofpress/securedrop/">https://github.com/freedomofpress/securedrop/</a></dd>
<dd>Version: 0.4.1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: Topology review is probably first step. Very Debian-centric.</dd>
<dt><a id="pkg-sparkleshare"><strong>SparkleShare</strong></a></dt>
<dd>Description: Git-based file synchronization tool</dd>
<dd>Site: <a href="http://sparkleshare.org">http://sparkleshare.org/</a></dd>
<dd>License: <a href="https://github.com/hbons/SparkleShare/blob/master/legal/License_for_SparkleShare.txt">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/hbons/SparkleShare/">https://github.com/hbons/SparkleShare/</a></dd>
<dd>Version: 2.0-beta–1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: essentially a GUI for git with server and client components. Back under active development?</dd>
<dt><a id="pkg-syncany"><strong>Syncany</strong></a></dt>
<dd>Description: open-source cloud storage and filesharing application</dd>
<dd>Site: <a href="https://www.syncany.org/">https://www.syncany.org/</a></dd>
<dd>License: <a href="https://github.com/syncany/syncany/blob/develop/LICENSE.md">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/syncany/syncany/">https://github.com/syncany/syncany/</a></dd>
<dd>Version: 0.4.9-alpha</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-turtl"><strong>Turtl</strong></a></dt>
<dd>Description: encrypted personal database and note-taking application</dd>
<dd>Site: <a href="https://turtl.it">https://turtl.it/</a></dd>
<dd>License: <a href="https://github.com/turtl/api/blob/master/LICENSE/">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/turtl/">https://github.com/turtl/</a></dd>
<dd>Version: various</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: various components for the platform in GitHub, including API and desktop.</dd>
</dl>
<h3 id="aidnetneta"><a id="net">net</a></h3>
<dl>
<dt><a id="pkg-arm"><strong>arm/nyx</strong></a></dt>
<dd>Description: terminal status monitor for Tor</dd>
<dd>Site: <a href="https://www.atagar.com/arm/">https://www.atagar.com/arm/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/nyx.git/tree/LICENSE">GPLv3</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/nyx.git">https://gitweb.torproject.org/nyx.git</a></dd>
<dd>Version: 1.4.5.0</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-blockfinder"><strong>blockfinder</strong></a></dt>
<dd>Description: tool for enumerating network information by country</dd>
<dd>Site: n/a</dd>
<dd>License: <a href="https://github.com/ioerror/blockfinder/blob/master/LICENSE/">BSD</a></dd>
<dd>Source: <a href="https://github.com/ioerror/blockfinder/">https://github.com/ioerror/blockfinder/</a></dd>
<dd>Version: 4.0.0</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>Notes:</dd>
<dt><a id="pkg-onioncat"><strong>onioncat</strong></a></dt>
<dd>Description: IP transparent Tor hidden service connector</dd>
<dd>Site: <a href="https://www.cypherpunk.at/onioncat_trac/">https://www.cypherpunk.at/onioncat_trac/</a></dd>
<dd>License: <a href="https://www.cypherpunk.at/onioncat_trac/wiki/COPYING">GPLv3</a></dd>
<dd>Source: <a href="https://www.cypherpunk.at/ocat/download/Source/">https://www.cypherpunk.at/ocat/download/Source/</a></dd>
<dd>Version: 0.2.2</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>Notes:</dd>
<dt><a id="pkg-onionshare"><strong>OnionShare</strong></a></dt>
<dd>Description: secure and anonymous file-sharing tool</dd>
<dd>Site: <a href="https://onionshare.org/">https://onionshare.org/</a></dd>
<dd>License: <a href="https://github.com/michahflee/onionshare/blob/master/LICENSE">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/micahflee/onionshare/">https://github.com/micahflee/onionshare/</a></dd>
<dd>Version: 1.1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: soon (https://github.com/torbsd/openbsd-ports/tree/master/net/onionshare)</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-ooni-probe"><strong>ooni-probe</strong></a></dt>
<dd>Description: network measurement framework for detecting network interference</dd>
<dd>Site: <a href="https://ooni.torproject.org/">https://ooni.torproject.org/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/onionoo.git/tree/LICENSE">BSD</a></dd>
<dd>Source: <a href="https://github.com/TheTorProject/ooni-probe/">https://github.com/TheTorProject/ooni-probe/</a></dd>
<dd>Version: 2.2.0</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
<dt><a id="pkg-ring"><strong>Ring</strong></a></dt>
<dd>Description: open source communications platform</dd>
<dd>Site: <a href="https://ring.cx/">https://ring.cx/</a></dd>
<dd>License: <a href="https://ring.cx/en/documentation/about-ring/">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/savoirfairelinux/ring-project">https://github.com/savoirfairelinux/ring-project</a></dd>
<dd>Version: various</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: various components for the platform, including daemon and GNOME client. ring-project initial target? no release yet. python3</dd>
<dt><a id="pkg-syncthing"><strong>Syncthing</strong></a></dt>
<dd>Description: open-source cloud storage and synchronization</dd>
<dd>Site: <a href="https://syncthing.net/">https://syncthing.net/</a></dd>
<dd>License: <a href="https://github.com/syncthing/syncthing/blob/master/LICENSE">MPLv2</a></dd>
<dd>Source: <a href="https://github.com/syncthing/syncthing/">https://github.com/syncthing/syncthing/</a></dd>
<dd>Version: 0.14.38</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: yes</dd>
<dd>notes: GitHub builds available for OpenBSD i386 and amd64</dd>
<dt><a id="pkg-tor"><strong>Tor</strong></a></dt>
<dd>Description: stable version of the onion-routing daemon for anonymous networking</dd>
<dd>Site: <a href="https://www.torproject.org/">https://www.torproject.org/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/tor.git/tree/LICENSE">BSD</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/tor.git/">https://gitweb.torproject.org/tor.git/</a></dd>
<dd>Version: 0.3.10</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-tor-alpha"><strong>Tor Alpha/Development</strong></a></dt>
<dd>Description: development version of the onion-routing daemon for anonymous networking</dd>
<dd>Site: <a href="https://www.torproject.org/">https://www.torproject.org/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/tor.git/tree/LICENSE/">BSD</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/tor.git/">https://gitweb.torproject.org/tor.git/</a></dd>
<dd>Source: 0.3.1.5-alpha</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: yes</dd>
<dd>notes: The alpha version is worth considering for production since it’s stable and often the most effective in terms of circumvention counter-measures. OpenBSD does not include alpha or development versions of software in their ports</dd>
<dt><a id="pkg-torsocks"><strong>Torsocks</strong></a></dt>
<dd>Description: SOCKS proxy for routing TCP applications through the Tor network</dd>
<dd>Site: <a href="https://www.torproject.org/">https://www.torproject.org/</a></dd>
<dd>License: <a href="https://gitweb.torproject.org/torsocks.git/tree/LICENSE/">GPLv2</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/torsocks.git/">https://gitweb.torproject.org/torsocks.git/</a></dd>
<dd>Version: 2.2.0</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-torstatus"><strong>Torstatus</strong></a></dt>
<dd>Description: tool for aggregating and presenting public information about the Tor network</dd>
<dd>Site: n/a</dd>
<dd>License: <a href="https://gitweb.torproject.org/torstatus.git/tree/doc/LICENSE">BSD</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/torstatus.git/">https://gitweb.torproject.org/torstatus.git/</a></dd>
<dd>Version: n/a</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: not under active development with new OONI data. outputs to www with Django for easy presentation and queries on the network with main site at https://torstatus.blutmagie.de/</dd>
</dl>
<h3 id="aidnet-imnet-ima"><a id="net-im">net-im</a></h3>
<dl>
<dt><a id="pkg-cryptocat"><strong>Cryptocat</strong></a></dt>
<dd>Description: accessible chat client</dd>
<dd>Site: <a href="https://crypto.cat/">https://crypto.cat/</a></dd>
<dd>License: <a href="https://github.com/cryptocat/cryptocat/blob/master/LICENSE.txt">GNU Affero</a></dd>
<dd>Source: <a href="https://github.com/cryptocat/cryptocat/">https://github.com/cryptocat/cryptocat/</a></dd>
<dd>Version: 3.1.08</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: no releases</dd>
<dt><a id="pkg-jitsi"><strong>Jitsi</strong></a></dt>
<dd>Description: XMPP/SIP client</dd>
<dd>Site: <a href="https://jitsi.org/">https://jitsi.org/</a></dd>
<dd>License: <a href="https://github.com/jitsi/jitsi/blob/master/LICENSE">Apache 2.0</a></dd>
<dd>Source: <a href="https://github.com/jitsi/jitsi/">https://github.com/jitsi/jitsi/</a></dd>
<dd>Version: 5587</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>notes: Java-based</dd>
<dt><a id="pkg-ricochet"><strong>Ricochet</strong></a></dt>
<dd>Description: instant messaging client</dd>
<dd>Site: <a href="https://ricochet.im/">https://ricochet.im/</a></dd>
<dd>License: <a href="https://github.com/ricochet-im/ricochet/blob/master/LICENSE">BSD</a></dd>
<dd>Source: <a href="https://github.com/ricochet-im/ricochet/">https://github.com/ricochet-im/ricochet/</a></dd>
<dd>Version: 1.1.4</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>notes:</dd>
<dt><a id="pkg-torchat2"><strong>TorChat2</strong></a></dt>
<dd>Description: peer-to-peer instant messenger running on Tor hidden services</dd>
<dd>Site: <a href="https://github.com/prof7bit/TorChat/wiki/">https://github.com/prof7bit/TorChat/wiki/</a></dd>
<dd>License: <a href="https://en.wikipedia.org/wiki/TorChat">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/prof7bit/TorChat/">https://github.com/prof7bit/TorChat/</a></dd>
<dd>Version: 9.9.553</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: license? Last activity 2014. 202 forks. jtorchat is Java-based. py_torchat is the original.</dd>
<dt><a id="pkg-tor-messenger"><strong>Tor Messenger</strong></a></dt>
<dd>Description: instant messenger for anonymity utilizing existing protocols</dd>
<dd>Site: n/a</dd>
<dd>License: <a href="https://github.com/rovemonteux/tormessenger/blob/master/LICENSE">GPLv2</a></dd>
<dd>Source: <a href="https://gitweb.torproject.org/tor-messenger-build.git">https://gitweb.torproject.org/tor-messenger-build.git</a></dd>
<dd>Version: 0.4.0b3</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: requires Docker as a build dependency and a bunch of Perl modules. Early stages of development. License reference is from old GitHub account, so may be inaccurate.</dd>
<dt><a id="pkg-tox"><strong>Tox/uTox</strong></a></dt>
<dd>Description: UDP-based communications platform</dd>
<dd>Site: <a href="https://tox.chat/">https://tox.chat/</a></dd>
<dd>License: <a href="https://github.com/irungentoo/toxcore/blob/master/COPYING">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/irungentoo/toxcore/">https://github.com/irungentoo/toxcore/</a></dd>
<dd>Version:</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: yes</dd>
<dd>notes: FreeBSD builds available on www. Sole GitHub release entitled “api_old_version.” Autconf</dd>
<dt><a id="pkg-vuvuzela"><strong>vuvuzela</strong></a></dt>
<dd>Description: private messaging system that hides metadata</dd>
<dd>Site: n/a</dd>
<dd>License: <a href="https://github.com/davidlazar/vuvuzela/blob/master/LICENSE">AGPLv3</a></dd>
<dd>Source: <a href="https://github.com/davidlazar/vuvuzela/">https://github.com/davidlazar/vuvuzela/</a></dd>
<dd>Version: 0.1</dd>
<dd>FreeBSD: no</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: in early stages of development and no GitHub releases. <a href="https://davidlazar.org/papers/vuvuzela.pdf">SOSP 2015 Paper</a> and <a href="https://davidlazar.org/slides/vuvuzela-sosp2015.pdf">SOSP 2015 Slides</a></dd>
</dl>
<h3 id="aidnet-p2pnet-p2pa"><a id="net-p2p">net-p2p</a></h3>
<dl>
<dt><a id="pkg-bitmessage"><strong>BitMessage</strong></a></dt>
<dd>Description: messaging platform to Bitcoin</dd>
<dd>Site: <a href="https://bitmessage.org/wiki/Main_Page/">https://bitmessage.org/wiki/Main_Page/</a></dd>
<dd>License: <a href="https://github.com/Bitmessage/PyBitmessage/blob/master/LICENSE/">MIT</a></dd>
<dd>Source: <a href="https://github.com/Bitmessage/PyBitMessage/">https://github.com/Bitmessage/PyBitMessage</a></dd>
<dd>Version: 0.6.2</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: no</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: yes</dd>
<dd>notes: as of January 2015, call for a <a href="http://blog.anonymousbitcoinbook.com/2015/01/seeking-bitmessage-code-reviewer/">code review</a>. Requires py-elliptic.</dd>
<dt><a id="pkg-retroshare"><strong>RetroShare</strong></a></dt>
<dd>Description: secure, decentralized P2P platform</dd>
<dd>Site: <a href="http://retroshare.sourceforge.net/">http://retroshare.sourceforge.net/</a></dd>
<dd>License: <a href="http://retroshare.sourceforge.net/wiki/index.php/Main_Page/">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/RetroShare/RetroShare/">https://github.com/RetroShare/RetroShare/</a></dd>
<dd>Version: 0.6.3</dd>
<dd>FreeBSD: yes</dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes:</dd>
</dl>
<h3 id="aidsecuritysecuritya"><a id="security">security</a></h3>
<dl>
<dt><a id=pkg-goed25519"><strong>go-ed25519</strong></a></dt>
<dd>Description: ed25519 for Go</dd>
<dd>Site:</dd>
<dd>License: <a href="https://github.com/agl/ed25519/blob/master/LICENSE">BSD3</a></dd>
<dd>Source: <a href="https://github.com/agl/ed25519/">https://github.com/agl/ed25519/</a></dd>
<dd>Version: no releases yet</dd>
<dd>FreeBSD: <a href="https://github.com/torbsd/freebsd-ports/tree/egypcio/security/go-ed25519">soon</a></dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: yes</dd>
<dd>DPorts: no</dd>
<dd>notes: a dependency for obfs4proxy</dd>
<dt><a id="pkg-gpg4usb"><strong>gpg4usb</strong></a></dt>
<dd>Description: portable editor for encrypting and decrypting files</dd>
<dd>Site: <a href="http://www.gpg4usb.org/">http://www.gpg4usb.org/</a></dd>
<dd>License: <a href="https://github.com/gpg4usb/gpg4usb/blob/master/COPYING">GPLv3</a></dd>
<dd>Source: <a href="https://github.com/gpg4usb/gpg4usb">https://github.com/gpg4usb/gpg4usb</a></dd>
<dd>Version: 0.3.3–2</dd>
<dd>FreeBSD: <a href="https://github.com/torbsd/freebsd-ports/tree/egypcio/security/go-ed25519">in progress</a></dd>
<dd>OpenBSD: yes</dd>
<dd>pkgsrc: no</dd>
<dd>DPorts: no</dd>
<dd>notes: necessary dependency for obfs4proxy</dd>
<dt><a id="pkg-keepassx"><strong>KeePassX</strong></a></dt>
<dd>Description: password management utility</dd>
<dd>Site: <a href="http://www.keepassx.org/">http://www.keepassx.org/</a></dd>
<dd>License: <a href="https://github.com/keepassx/keepassx/">Various</a></dd>