-
Notifications
You must be signed in to change notification settings - Fork 2
/
changelog.upstream
3578 lines (2382 loc) · 105 KB
/
changelog.upstream
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
commit fb9d5144e1ff5e80ad37aaced87928ccb105bd75
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 16 14:59:22 2022 +0000
remove awk as dependency
#68
commit 6e6f345e2e3ce0299c4cd04b5f194a91d6311e23
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 16 14:30:12 2022 +0000
fix debian/control deps, recs, sugs
#68
commit 694cbdf7fc64a8f8782860404077ddf0efb42918
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 16 14:15:30 2022 +0000
correct deb package names
#68, drawback is that tui depends is not correct but necessary like this for whonix, to mv packages to suggests
commit 07dc73f23052d43fe61fc8ec9840093b2c337565
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 16 14:04:33 2022 +0000
add script version to man pages
#68
commit 08e394d217ccb2eb8945f01dbfe770dcc52949e0
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 22:27:51 2022 +0000
fix deb manpages
#68
commit 3a69b4ee0cf69aa397e87940f7ea6c81a7686d00
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 21:48:26 2022 +0000
start separating deb packages, missing sep man pages
#68
commit 6a2786d7545f9810c5bd75a36cc3f0932ee18790
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 21:46:41 2022 +0000
update man pages from 1 to 8
commit 8971bac42c0955a799cee178c6cdf67b69b5506f
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 19:18:40 2022 +0000
sunset vanguards and backup
#72
commit 34ef543254062e4ec109d3356d0cde05731b2e60
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 18:43:33 2022 +0000
separate man pages
#68
commit dab9c05fab5d4ad639c8d828b73285d5e4443cb2
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 17:23:10 2022 +0000
separate scripts
#67
commit d56b6316566dbfa2c0f606f4ce44c0367977d7bd
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 16:43:28 2022 +0000
fix build, set os
#71 , misc setting whonix to anon
commit 9c96519aa9dc879c4ce61817f90e532a6c49a5c1
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 15:05:36 2022 +0000
fix -tui for WS
#54
commit 23f9c9c8e923e059889b1c7a79559c234a3556ca
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 14:21:03 2022 +0000
fix outdated var on -tui
commit 566d445579ffea6f2a55c819843e1d5e6b2c2640
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 14:17:31 2022 +0000
remove source_conf tmp file
#70
commit 1fbce9a613824838e8ff0265cc539c3d69c1f9f3
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 14:06:59 2022 +0000
source_conf safely and helper for --getconf portability
#70
commit 1e7e5cdb902aadc5b047b9f930b1162739d21c71
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 09:56:06 2022 +0000
-s tabs spaces (backup)
commit bc8a7f970fcd1b8a6e06f120726773a00aa868cf
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 15 09:54:17 2022 +0000
make --getopt work without hardcoding and be portable to any script
#69
commit 2a37e8096a0eb70ac7c8b8a63ce064294aa3d24d
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 23:40:45 2022 +0000
fix improper case statement
#48
commit e9a9d1336ace94bbb979186d633f9c9a5a87a8c6
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 23:37:38 2022 +0000
correct -cli options for auth
#48
commit ee43bca66df75b645699288617c98e1ba177ca04
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 23:36:36 2022 +0000
fix -vanguards spacing
commit bbe82b02cb8daa3383bc3e1789e352865773d405
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 23:36:06 2022 +0000
org -auth
#48
commit c8c66b70781af715067ced9d7fc43480f1df5443
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 23:34:31 2022 +0000
fix -tui with auth options
commit 461dff1175fa50da54c339bf2e2428f98a3e6d62
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:35:14 2022 +0000
fix --web --port
commit 9492061d025d978d169b0fcd3e865a4fc3e0add9
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:33:48 2022 +0000
-web --port improvements
commit 79e75a84b18cf94b8ed40406824ece63eb432f7c
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:30:21 2022 +0000
faciliate --port specification on main
commit 7ef4986dfffed554665c25db5a9fbcd880e42b5f
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:29:41 2022 +0000
improve exit trap
commit cf363ec6a1218ead6b76b7e51ee5a0717fed95be
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:29:04 2022 +0000
update man pages
commit a0b7974d2728cf6cfe69c8b6963c6b34b9d0d8ca
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Aug 14 22:28:48 2022 +0000
add .swp files to gitignore
commit 42945d5e65f997ba9cfb8a6e63caf2e49b0e17bc
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Aug 13 22:55:14 2022 +0000
improve safe_edit handling file suffix
#66
commit 6dc2eb1fb9dc2098c00b5cf80feed9c3cf8dd8db
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Aug 13 21:35:21 2022 +0000
fix -auth- chekcs
#48
commit d586df23d0ba05e28c7ddd963b7ad790edcf0cc1
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 23:24:46 2022 +0000
-auth-server major improvements to activation
#48
commit bf272931aeab6287604a678ba475e0d73112fce9
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 23:24:01 2022 +0000
-auth-client correct break loop when there is no files
#48
commit 56e56595fb48f809a9989bab87b9179dd496c95d
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 22:27:01 2022 +0000
-auth-client list loop client names
https://github.com/nyxnor/onionjuggler/issues/48
commit 4d3f85129e388d0be70a189e64d6ab8a15b57ff6
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 21:17:38 2022 +0000
correct file wording
https://github.com/nyxnor/onionjuggler/issues/48
commit 4eeb7039fefc28502be117467756993627be769e
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 20:28:18 2022 +0000
misc wording
#48
commit 271f9107a4c153e09ae6ab10c378781f71fcce9d
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 20:24:54 2022 +0000
improve -auth-client add --client-priv-config
https://github.com/nyxnor/onionjuggler/issues/48
commit 8462259262c1ca9bb3bff2372a75abebbc6ebd26
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Aug 12 15:06:44 2022 +0000
improve -auth-client --replace-file option
https://github.com/nyxnor/onionjuggler/issues/48
commit 0f09dfcff9684648bcfcb6e8f0987f479e5137e7
Merge: 38f3847 85437c3
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Aug 11 23:08:20 2022 +0000
Merge branch 'main' of https://github.com/nyxnor/onionjuggler
commit 38f38470bb3dd7482ddaac3746b22a9746e1b11e
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Aug 11 23:07:42 2022 +0000
-auth-server import file pt1
https://github.com/nyxnor/onionjuggler/issues/48
commit 07f0205981feb9a6244137af93ce316686dfb59d
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Aug 11 23:07:19 2022 +0000
-auth-client import file pt1
https://github.com/nyxnor/onionjuggler/issues/48
commit c809dd01a04b16cb2e60168841bcb8c47c4978a0
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Aug 11 23:04:53 2022 +0000
improve verify_config_tor parsing
fix https://github.com/nyxnor/onionjuggler/issues/66
commit 2c1c381678178cbd7aca3545201fcdfe536c1d11
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Aug 11 23:04:14 2022 +0000
misc -web
commit 2c004166efdabfec7f027e3714dd69c4577ace3a
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Aug 10 21:25:08 2022 +0000
misc usage
commit 85437c3b385e0e4d20c0df9cc1b3d5de14db6834
Merge: f3a1d75 f609e8d
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Aug 10 21:24:22 2022 +0000
Merge branch 'main' of https://github.com/nyxnor/onionjuggler
commit f3a1d75b53a61f6de43a3220b3b6abbc49d0065f
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Aug 10 21:22:45 2022 +0000
whonix firewall info
https://github.com/nyxnor/onionjuggler/issues/54
commit f609e8dd0210f47762c603372bc01e67cc46b024
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Aug 10 07:22:25 2022 +0000
fix https://github.com/nyxnor/onionjuggler/issues/64
commit 0ab0702c1599b5c01753385106770700316e4432
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 20:45:12 2022 +0000
number whonix gw torrc to 40. issue https://github.com/nyxnor/onionjuggler/issues/54
commit 866684cec804de9d66e2134b6c31cf0b9b5dde44
Merge: c50f013 2c8b32f
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 20:36:31 2022 +0000
Merge branch 'main' of https://github.com/nyxnor/onionjuggler
commit c50f01342aba3823c95769ab44827e59abc3e35f
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 20:36:22 2022 +0000
fix https://github.com/nyxnor/onionjuggler/issues/60
commit 2c8b32f60fa1f970660cc0236562fc372d6c173f
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 20:02:42 2022 +0000
abort webserver configuration and remove file if it fails
commit cdad16d081c23f511e81414e6f170e36639d8d48
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 18:41:50 2022 +0000
whonix firewalling for cli script
issue: https://github.com/nyxnor/onionjuggler/issues/54
commit 762094edb853dae0e051d2192ac93cf3193d7850
Merge: 08d0dc3 bf01fd0
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 15:45:54 2022 +0000
Merge branch 'main' of https://github.com/nyxnor/onionjuggler
commit 08d0dc35640747fb74df9939e9185d6ba9e2902e
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 15:45:06 2022 +0000
add instruction web script to target ws port from gw service
commit bf01fd0ac559fcc3eec73b5f8cf41f618270d60e
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Aug 9 15:17:37 2022 +0000
fix no_check_service for web script
commit b3b3f2ddefbee2da50b8e7f55903d684a45e3f8f
Merge: 78152d7 b050591
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 8 13:48:34 2022 +0000
Merge branch 'main' of https://github.com/nyxnor/onionjuggler
commit 78152d7ba8a7b0550e31b87d5d57fdf954cfa799
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Aug 8 13:48:21 2022 +0000
correct chmod cmd
commit b0505910707b88893aa4f8d09a3110c204f6e2b5
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 28 22:56:19 2022 +0000
update readme
commit edd5051d047c652ede9c72d5af355756755e0618
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:50:02 2022 +0000
correct confs to add python3
https://github.com/nyxnor/onionjuggler/issues/54
commit 9a6291a5ababce44b29bdd6b9e40cc85d3ee6e7c
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:38:24 2022 +0000
target gateway on tui
https://github.com/nyxnor/onionjuggler/issues/54
commit 26313181b51bb07c8db76a219b03ec86e635c6b8
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:32:33 2022 +0000
typos and resize tui ports
https://github.com/nyxnor/onionjuggler/issues/54
commit 7b9e70c114512394345502e6234ee1de98503c80
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:26:20 2022 +0000
socket typo
https://github.com/nyxnor/onionjuggler/issues/54
commit f5b3506a398eabda34feeff7e68e711e405facc5
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:21:29 2022 +0000
tui
https://github.com/nyxnor/onionjuggler/issues/54
commit ff6069e16c6f66b8ca919a2b162cd4e7a4d3f418
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 14:17:24 2022 +0000
correct tui for whonix
https://github.com/nyxnor/onionjuggler/issues/54
commit 285a8c1da05fd2f1db666d456834701c9c897920
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 01:47:42 2022 +0000
move file creation after privilege
https://github.com/nyxnor/onionjuggler/issues/54
commit 63ca7d547e52faa37e3073dbbe52f97b95f94c1c
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 01:45:09 2022 +0000
fix grepping no file
https://github.com/nyxnor/onionjuggler/issues/54
commit 1986e2c1220dffadf3262b2e71ec86117d1404d7
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 01:27:26 2022 +0000
remove sudo/doas dependency
you still need to execute as superuser, but just to call the script, the command does not appear anymore inside the script. https://github.com/nyxnor/onionjuggler/issues/52
commit d317e7dd2c4c9c91238cda6fb9b05949bf4a2d10
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 23 01:14:13 2022 +0000
fix backup dir
https://github.com/nyxnor/onionjuggler/issues/52
commit aae9549be997683064ac3e4400f99c43203bbe62
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 23:43:08 2022 +0000
fix shellcheck warnings
commit 6b371343d2b0ac54e3baca3ebcc2e60208e2d0b0
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 23:37:59 2022 +0000
dynamic tui
not perfect but it does the job for now, https://github.com/nyxnor/onionjuggler/issues/59
commit f7345488127f06f4e848a2e389ad4f494b86a191
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 22:59:44 2022 +0000
wording
https://github.com/nyxnor/onionjuggler/issues/54
commit 137b4e159bc53f75e7eda07ae816d7addaaf74fb
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 22:58:06 2022 +0000
change plugin check method
https://github.com/nyxnor/onionjuggler/issues/54
commit 52be93ff71427366f1644dbd3160ff0a470f52c4
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 20:55:16 2022 +0000
fix debian control
https://github.com/nyxnor/onionjuggler/issues/54
commit 242bb7caae64da341e5735d8ca61aad0a548548b
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Feb 21 20:19:25 2022 +0000
enable plugin block mode
https://github.com/nyxnor/onionjuggler/issues/54
commit b8ca76c1f79d21adf844ab646ea3dbe5b223b02b
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 19 16:43:51 2022 +0000
fix installation
commit 159eba5507f318298309eec663fc05ea34a93f66
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 19 02:09:45 2022 +0000
fix /usr/share installation
commit 3d71915c50caee0384eddedd48d655d51a962cb9
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 19 02:04:30 2022 +0000
fix plugin selection
commit 3930f2f2f9ca1e2f2fb78dff8262190c97109419
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 19 02:00:14 2022 +0000
fix plugin specific installation
commit eac796782bef6f2d1780ad8267a66ba93ef2ffdb
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 19 01:49:54 2022 +0000
massive changes to dissipate scripts
- removed location, best to look on TPO site for that
- scripts separated
- functions on /usr/share
- you can run your own onionjuggler-cli-plugin
- Whonix WS and GW requirements are different
- improved manual pages
commit c10a8deea3927435e0801ca1758d1b8d746b4fbf
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 22:16:34 2022 +0000
don't show hostname for --web option
happens when there is workstation and gateway
commit f06183d5423eda5e6d7306a841b7cd26388bf359
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 21:53:50 2022 +0000
no-check-service for workstations
commit 3d0b6e9e1f9b1662f098b9f3517a8942687fc23f
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 21:26:59 2022 +0000
make installation of packages faster
commit f94dd143c72978b4e550b8103b4becc7a833e007
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 21:04:04 2022 +0000
fix
commit 33ab00b2ba9fa31f9be094d386cc6957ca2e631c
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 20:48:39 2022 +0000
fix exiting script
commit 2f89399f394219f6542539e290e1299b40960dc7
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 19:50:49 2022 +0000
fix targe target for qubes-whonix
commit 04e5f3f8ec7cc965051f30c54f7e9ec081f71581
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 19:48:51 2022 +0000
fix targe target for qubes-whonix
commit 27d7159abee39aaef1cbf231beb62a8f3a09fafe
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 19:15:59 2022 +0000
fix shellcheck
commit a906128335f4fc3e97e85aa7f80ddb0fca6c43c3
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 19:12:01 2022 +0000
fix hs target default
commit cd46fbcc23e448fd1acaa9a5004c8db5f525eac8
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 19:07:29 2022 +0000
set default hsport target addr for qubes whonix, the targe tshould be the ws qube ip
commit ca74ee2425ed824a3b8738fe460734696a5ec31f
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 16:18:41 2022 +0000
make term gateway broader, not only whonix
commit 5335a165d1f1aa40fb818cb9774ab5c812481db2
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 01:12:18 2022 +0000
remove color after error_msg
commit 317e9542644842059847cbab9913e3387aebff91
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 01:08:09 2022 +0000
fix emptying var
commit 9de4b99d088491308983cda6418c706036f4846c
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:37:45 2022 +0000
fix grepping existing services
commit 24118471e93032cae5237e96aaed450e8f289aed
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:20:00 2022 +0000
fix typo
commit 1a4877b43588728e542313d2736eff3c043b1bdd
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:18:07 2022 +0000
fix again grep services
commit c959c50c2cbb18ce8c59bed28368a0b3b36c8da3
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:16:40 2022 +0000
fix grepping existing services
commit 8906f3ee912e9bb17a72ba89382d10e3c076607e
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:15:14 2022 +0000
block hs with same name before other checks
commit 33ff01ab6164210678e2b5e7de247f39ea373c93
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 17 00:06:54 2022 +0000
maintain .auth_private file name consistent by always removing .onion
commit 21d56a909196ac2d80405dfc75ab45cb84aef1b5
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:58:30 2022 +0000
fix typo
commit b89da1482297c67574dc264127653b9f96f3a075
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:55:56 2022 +0000
fix auth-client
commit 32d78f58d35323b4e374b9cc0e08dd088e5964a9
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:38:40 2022 +0000
fix safe_edit variables
commit 8d54cf9ca763d27a4efe90b4f39a6efd93deec21
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:32:48 2022 +0000
simplify safe_edit
commit 7ee61bfe3753b81b4460369d212993d080c0906c
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:23:36 2022 +0000
fix safe_edit
commit b631e5e422e32a8f81d38a1634c0c03bf924a165
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:16:44 2022 +0000
fix shellcheck
commit adf3b05f09b0603bd910da447e711824225662b5
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 23:11:57 2022 +0000
fix eval
https://github.com/nyxnor/onionjuggler/issues/54
commit fd46b11af6f70fed290336940f368abb653b9320
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 01:20:04 2022 +0000
update getconf
commit 1436f0772069663e9eddcd89669cedc640702b49
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 00:52:20 2022 +0000
fix tails and whonix installation
commit dad2332778b21ca9699e95d28b3c9c796196c9ac
Author: nyxnor <nyxnor@protonmail.com>
Date: Wed Feb 16 00:45:53 2022 +0000
read all tor files to check if config is already set
commit 588a11db6ff41084d167f5afec06e4375d039543
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Feb 15 17:50:56 2022 +0000
add tails default conf
difference is the tor_conf owner is tor_user, not root
commit 41a9659e45a2745fed6584a1b61fb5c1f330bde0
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Feb 15 17:49:53 2022 +0000
whonix installation and default conf
#54
commit 4006a3d249868d7bda8befdc1e18e13d799cca58
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Feb 13 21:35:18 2022 +0100
set correct exit code
commit b645b85e9e10c404ab1d66d70df17bdad22db337
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Feb 13 20:57:04 2022 +0100
define target for whonix-gw running on qubes, non-qubes, for itself
commit ae8d84096e1b0cfc8fb8e9a148761794e30ab88c
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Feb 13 02:46:37 2022 +0100
remove su_cmd from the tui, just call it as root
commit 85d3c8763d77dce0ea3d7ce632357880357a2227
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 22:06:07 2022 +0100
fix debian installation
commit 5d3960b081b49a377e313fc9d44f0ec8cd2d8de5
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 20:36:08 2022 +0100
update debian packaging files
commit a19b80697b7d7617cf7db843bcaaf62967a63683
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 15:56:24 2022 +0100
stop option parsing with double hifens '--'
commit 5bc29331a17afd8e086b6b66f66b79551bfd67f0
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 15:49:09 2022 +0100
improve getopts
fix https://github.com/nyxnor/onionjuggler/issues/53
commit 38a7bd0662fa9082e567e1d22c9015661cf05414
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 14:24:50 2022 +0100
comment on complex code
commit db7c369de5422219d03b1c23a843c06be5cc4921
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 13:19:47 2022 +0100
check if target is already in use by looking at virtual port
this enhances because it can catch more error, because tor accepts a blank target'
commit 005b87e00e46b3ced9649f1fcaeebca703c6ab85
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 04:13:54 2022 +0100
update .gitignore
commit 761df4535b5fa25e79cafec2359e9ef3f732d5e2
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 04:10:04 2022 +0100
fix workflow
commit f482d0b7cdbe1973e4bdc3034b454a606f915c83
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 04:08:43 2022 +0100
prepare debian packaging
commit 7860140b74ef037d6292995ecab196a55d9e13a8
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 01:42:21 2022 +0100
specifying port is needed now
commit 1b10b580b57ea760d19df7d01d21d2ceef82f751
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 01:36:09 2022 +0100
stick to tor defaults
fix https://github.com/nyxnor/onionjuggler/issues/49
commit 05138e262fbb824ef50e03ce3f239e9cf4f2b1c3
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 01:29:06 2022 +0100
fix https://github.com/nyxnor/onionjuggler/issues/14
done when possible, rare cases now are using ls just to check if dir is not empty shortly as a for loop would be overkill for that
commit 0638aa15095087a21507cb2d9821b58b3b1d066e
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Feb 12 00:21:47 2022 +0100
removal of 'ls' command pt1
https://github.com/nyxnor/onionjuggler/issues/14
commit a8cbf9208a9de17c77313a5bcf567e34e53f484b
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 11 23:59:48 2022 +0100
remove su_cmd and require root to run
fix https://github.com/nyxnor/onionjuggler/issues/52
commit 5be0329f76ab29e371f7b87ecdbe405e5be27e74
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 11 23:32:01 2022 +0100
fix https://github.com/nyxnor/onionjuggler/issues/51
commit 9ee4ff832b9c9300e3ac58612e755246df1ccb1d
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 4 17:00:40 2022 +0100
inform on readme about unlimit ports
commit a7436cc2e028a7e71d66e27fbc92df75ff6ed781
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 4 16:56:04 2022 +0100
be more verbose about errors
commit 055d7588b3efa1f9226cee8150da6edc85a724d6
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 4 15:54:30 2022 +0100
multiple hs ports
fix https://github.com/nyxnor/onionjuggler/issues/45
commit 50034f3f7ba8d4e921ae0a73c8a056fc115b859d
Author: nyxnor <nyxnor@protonmail.com>
Date: Fri Feb 4 10:53:19 2022 +0100
add alternative user owner of tor conf
this will help in tails, where the ownership is debian-tor:debian-tor, not root:root or root:wheel
commit 3ea58f9feb5e70f08bfaf3f086e57defa099709e
Author: nyxnor <nyxnor@protonmail.com>
Date: Thu Feb 3 23:51:56 2022 +0100
onions hostnames can only be lower case
commit 0259953cfe7542834977fbdd09393c609de7e0f3
Author: nyxnor <nyxnor@protonmail.com>
Date: Tue Feb 1 02:05:42 2022 +0100
accept hifen for service name
- https://github.com/nyxnor/onionjuggler/issues/47
- https://github.com/radio24/TorBox/issues/146
by default, my option parsing will block if the argument starts with a '-', because that is reserved for options, and nobody should name their files starting with a punctuation execpt a dot.
commit 664bf40bb3e7a03a32c57ff4f30f64982420f523
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 30 23:10:10 2022 +0100
typo
commit ff7aadb5c23814136a6c942d6e4acfc55417b651
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 30 23:08:14 2022 +0100
fix configure.sh with vitor removal
commit e1b7a60c736d4556150a1085c3185bfd76ed00dd
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 30 23:04:03 2022 +0100
remove vitor - moved to a separate repo
repo available on github.com/nyxnor/vitor
commit 0b53bd9e8eb43e978617b9a80eb7dce4e5b749ce
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 30 23:03:59 2022 +0100
block special characters that break tor on service var
fix https://github.com/radio24/TorBox/issues/146
commit c5752e88b4eb823a1480e059b6c550bb4e514390
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Jan 10 21:11:22 2022 +0100
comments on vitor about command not being run
commit a297a0a16bcbc90a009f1d7be95a44d0a049b2ec
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Jan 10 21:09:13 2022 +0100
improve vitor to use sudoedit/doasedit if available first hand
commit 942e673e0376ec77896ee96b7e70b6e34dd11cb1
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Jan 10 20:48:58 2022 +0100
fix editor not being found and if empty, exit. fix m4 not being found.
https://github.com/nyxnor/onionjuggler/issues/43
commit 9281d8fee91d333d39b7e1c27fc2ae574c5bb132
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 9 18:30:38 2022 +0100
fix temporary copy being called before sanity checks when activating a service
commit 636bc4ee01f0c31c0aee160774f3e411c7697bef
Author: nyxnor <nyxnor@protonmail.com>
Date: Sat Jan 8 19:45:15 2022 +0100
fix tor_control_port integer
commit c427d4bc64be4d38965f4bbd21581b026622d5b9
Author: nyxnor <nyxnor@protonmail.com>
Date: Mon Jan 3 23:58:51 2022 +0100
run configure.sh from any directory inside the onionjuggler git repository
commit c9d8b770c8becd75bccb5d3885d86639155be629
Author: nyxnor <nyxnor@protonmail.com>
Date: Sun Jan 2 21:38:57 2022 +0100
fix vitor not detecting SUDO_EDITOR
commit fb432bd8d92fa0a6e093a572b2a15586fef26f5e