-
Notifications
You must be signed in to change notification settings - Fork 35
/
changelog.upstream
1452 lines (969 loc) · 41.1 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 59056a25d1e14d6d81ee8a9666eda0bc62fe342a
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 15 09:19:43 2023 -0400
seccomp
commit 167f38528ed47cef87be2cea9ba1fa5b4bbbe2d8
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 15 09:08:18 2023 -0400
bumped changelog version
commit 07d37f52867816ede568c7fb88bde1ae012359e3
Merge: fdd0d49 e488037
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 15 09:02:19 2023 -0400
Merge branch 'chatgpt'
commit fdd0d492bca9e125e95ea787066e266ad404fdc3
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 15 08:19:56 2023 -0400
bumped changelog version
commit 8e59a85024c4fb4345918d28396e85c85c7abef2
Merge: 6a5f677 cda8d74
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 15 08:15:19 2023 -0400
Merge remote-tracking branch 'vmonaco/dev'
commit cda8d74c37227656cc09c1f7324a69b8f908c9cc
Author: Vinnie Monaco <[email protected]>
Date: Sun Aug 13 23:00:11 2023 -0700
one more missing seccomp filter
commit e475b1c9c552643328da48f39bef999a88d6be21
Merge: 34e9f42 2a3a45b
Author: Vinnie Monaco <[email protected]>
Date: Sun Aug 13 22:56:56 2023 -0700
Merge branch 'master' into dev
commit 34e9f421d75ef5e99f71c6d84bb6fb088ac91637
Author: Vinnie Monaco <[email protected]>
Date: Sun Aug 13 22:54:12 2023 -0700
added missing seccomp filters
commit e4880377bf9e3ae638b74c23a8ef92b07c9bad04
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 08:27:38 2023 -0400
apparmor
commit c8178aea02117addfb28dba06e824ece7732dee2
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 07:31:42 2023 -0400
disable broken seccomp SystemCallFilter
https://github.com/vmonaco/kloak/pull/38#issuecomment-1627688486
commit 6e13598c6d8d39c1f891e7ed036f1e1e800d5c85
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 07:30:48 2023 -0400
apparmor
commit 2f08794c4b238bb08e0e06a9b10f031f739955be
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 07:26:22 2023 -0400
seccomp
commit 6a5f677a15e34989d4a87382304806e70771c6f0
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 06:32:50 2023 -0400
bumped changelog version
commit d97fc922d1032594768b77fbbc7c2683f54abaa9
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 06:13:21 2023 -0400
readme
commit 1ac67d459855b4d623c4ae6aa4bd183ef7bd84b2
Author: Patrick Schleizer <[email protected]>
Date: Sun Jul 9 05:32:55 2023 -0400
bumped changelog version
commit 2a8b5a6934019598beb8290ac4b214407395c54e
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 8 14:14:05 2023 -0400
Added a running variable to control the while loop and added a signal handler (handle_signal) to catch the interrupt signal (SIGINT) and terminate the program gracefully.
Fixed the command-line argument handling by checking if argc is less than 2 (instead of assuming argc > 1). If no arguments are provided, the program displays the usage message and exits.
Updated the ioctl() call to check the return value for errors. If the ioctl() operation fails to get the device name, an error message is printed, and the program exits.
Removed the check for root access since it was only printing a message and not affecting the program's execution. If root access is required, it should be checked externally before running the program.
Closed the device file descriptor (fd) before exiting the program to release system resources properly.
commit 54f0b3e111a44bb95223200575fe9d19a8c70c09
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 8 14:10:20 2023 -0400
The rescue_len variable was not initialized, causing undefined behavior. I added the initialization rescue_len = 0 to fix it.
In the init_inputs() function, I added error handling for the malloc call to allocate memory for the pfds array.
In the emit_event() function, I added error handling for the libevdev_uinput_write_event function call to check if writing the event to uinput was successful.
commit cd31cd4060c97c6dabb4af88a17d9a56c3981931
Merge: d11ed97 2a3a45b
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 8 13:17:08 2023 -0400
Merge remote-tracking branch 'vmonaco/master' into dev
commit e28ba0939f1d3fe01e3c141727ec5534c4423b0b
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 8 13:08:00 2023 -0400
same ordering as upstream
commit 29055528d43cf6d53b459d4e180698fe255c78d2
Merge: d8e06e8 2a3a45b
Author: Patrick Schleizer <[email protected]>
Date: Sat Jul 8 13:03:38 2023 -0400
Merge remote-tracking branch 'vmonaco/master'
commit d8e06e8e4b8bdff8d4243aa627acbc9233a2b515
Author: Patrick Schleizer <[email protected]>
Date: Fri Jul 7 20:08:03 2023 -0400
bumped changelog version
commit 327df39693b7fa47baf7fde697006e7f649cf796
Author: Patrick Schleizer <[email protected]>
Date: Fri Jul 7 20:04:27 2023 -0400
seccomp
commit fb89c86d206aada6dabb818c3dff1f6b3ac6c1a3
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:43:23 2023 +0000
bumped changelog version
commit e1f1f152a406042af0fef3b801b4bd4850c10ae8
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 21 09:11:34 2023 +0000
bookworm
commit 2a3a45ba429c8ba6e2c8d8560f79efb6cb43fdb3
Author: Vinnie Monaco <[email protected]>
Date: Sat Jun 17 20:57:22 2023 -0700
Update README.md
commit e817caef8bdda365838658b232914dfe4c9143d0
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 11:28:58 2023 +0000
bumped changelog version
commit 9bc6515a828f64e10c367169ecdc249f237fb464
Author: Patrick Schleizer <[email protected]>
Date: Fri Jun 16 10:49:08 2023 +0000
readme
commit 8f585808b10b080434bcf74f45dee9e826ec89fa
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 10:09:18 2023 +0000
bumped changelog version
commit 6dbf7832ad67f950fc85fbf12359d318b07652a7
Author: Patrick Schleizer <[email protected]>
Date: Wed Jun 14 09:51:12 2023 +0000
fix lintian warning
P: kloak source: very-long-line-length-in-source-file 676 > 512 [README.md:170]
commit 2155a425603c61490458590c5abfe75f3d8aa5cd
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 18:15:43 2023 +0000
bumped changelog version
commit 39194c7ec3e782594cf7715888013502d6a21824
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 16:22:35 2023 +0000
Standards-Version: 4.6.1.0
commit 120234dd3cfe9567eef09c8681b4855119d9dd90
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 15:38:28 2023 +0000
bumped changelog version
commit d8c20cabb38a124ba9e9171c7d897bc2993f0a87
Author: Patrick Schleizer <[email protected]>
Date: Mon Jun 12 14:52:04 2023 +0000
update copyright year
commit 6b2d75e98af072c68981a677bf66320dafca79fc
Merge: 38eefc5 af2ddc3
Author: Vinnie Monaco <[email protected]>
Date: Wed Nov 16 21:02:23 2022 -0800
Merge pull request #44 from GerHobbelt/master
README fixes: broken link to paper fixed + 1 language typo
commit af2ddc31b008ac0042b5cfdcc53cce72dec9cbf3
Author: Ger Hobbelt <[email protected]>
Date: Tue Nov 15 19:58:29 2022 +0100
updated link to stylometry techniques paper.
commit 53ada224cd9323916f515d5f791050b18ae20639
Author: Ger Hobbelt <[email protected]>
Date: Tue Nov 15 19:57:22 2022 +0100
language fix in README
commit ad1cb08250b6b052c7232d5d2614606dccb6bd54
Author: Patrick Schleizer <[email protected]>
Date: Wed May 25 06:07:59 2022 -0400
bumped changelog version
commit a7ce4f5d43e7d90f1add743e7bd602b6be3e825b
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 15:27:14 2022 -0400
readme
commit c2752726f56fefa3a51adb234747d53d21851e42
Author: Patrick Schleizer <[email protected]>
Date: Fri May 20 14:46:43 2022 -0400
copyright
commit 22a0d992b64a9026a6bf01b0e48a8914f34698c6
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 10 12:40:20 2022 -0400
readme
commit 38eefc52728e31e89646dd61bb15ecbbb49c0871
Merge: aaf1de4 6cce482
Author: Vinnie Monaco <[email protected]>
Date: Tue Jan 11 10:37:41 2022 -0800
Merge pull request #40 from hardcore-sushi/systemd-fix
Add some system calls to the systemd whitelist to prevent crashes
commit 6cce4829066bac632e1730b8f379e3c45ac15a02
Author: Hardcore Sushi <[email protected]>
Date: Fri Jan 7 17:24:39 2022 +0100
Add some system calls to the systemd whitelist to prevent crashes
commit 64aef6d208f37fde04c4f12d84f16c214ed58087
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 9 14:32:31 2021 -0500
readme
commit d11ed97e3c26318ca96a07806d492597950f36bb
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 28 15:22:59 2021 -0700
fixed typo
commit edf0a41c9ad05e901d6726804112308dc098965f
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 28 15:21:07 2021 -0700
fixed apparmor profile: added r to /sys/devices/virtual/input
commit 5870a8d3c79567333fbb720d2ea1af43ceee2aea
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 28 15:15:49 2021 -0700
fixed apparmor profile: added w to /dev/uinput
commit 1e16893c10fbfcac899fe341cae87022a295e626
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 28 15:14:00 2021 -0700
fixed apparmor profile: added r to /dev/uinput
commit 2edb4b2bc4c72d6ca457afb4f8265f5ea69e0da9
Author: Vinnie Monaco <[email protected]>
Date: Thu Sep 23 16:33:44 2021 -0700
formatted main.c
commit 1db17e2ac3113cc5253330d5d459fd64dba93164
Author: Vinnie Monaco <[email protected]>
Date: Thu Sep 23 16:11:05 2021 -0700
added pkg-config to build depends
commit c2142bf9eafbc4ed8360e1e8a286fbabc68a74d2
Author: Vinnie Monaco <[email protected]>
Date: Thu Sep 23 16:10:00 2021 -0700
added libsodium init
commit 12f16aac4f8e207a3a23ea9e843e219332a1cd94
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 20 21:32:52 2021 -0700
typo
commit 4f271826d6c1621ad8e4a85046da12525698e88f
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 20 21:32:07 2021 -0700
added deb dependencies
commit 5fca94d9e7c27a0b3d9dd8332371987fef6047ec
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 20 11:30:55 2021 -0700
fixed verbose output format
commit ca5510586597ebd6287afa9c878c2bfc3bbf2b9b
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 20 11:20:52 2021 -0700
added build flags to makefile
commit ea6f6be0a33f19038b42aff42aacfd09020b3041
Author: Vinnie Monaco <[email protected]>
Date: Fri Sep 17 15:27:14 2021 -0700
use libsodium for prng
commit 5dc5412f78b7111c42818b973a7a25248b5d49ca
Author: Vinnie Monaco <[email protected]>
Date: Fri Sep 17 15:02:39 2021 -0700
added support for multiple input devices
commit 36f83eb631be27e325d9209e956e04f37fbe470c
Merge: 59c47d8 aaf1de4
Author: Vinnie Monaco <[email protected]>
Date: Fri Sep 17 15:01:55 2021 -0700
Merge branch 'master' of github.com:vmonaco/kloak into mouse
commit aaf1de40cbe9679af908063b75da3e87081714e4
Merge: 7fb3f9e 88477f6
Author: Vinnie Monaco <[email protected]>
Date: Fri Sep 17 15:01:42 2021 -0700
Merge pull request #36 from Whonix/master
port packaging to Debian bullseye
commit 59c47d88e4b579e93a85209484681f536035e8d6
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 13 14:34:16 2021 -0700
removed restrictions on event types
commit 99d2af051dccbee7f2cd3f35fbc2d7ae64af00c7
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 13 11:51:38 2021 -0700
fixed typo
commit 7b94b28e472cef7e3c52960986a3bc7dfa651f94
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 13 11:45:23 2021 -0700
started support for EV_REL events
commit 88477f678878d2405b85839c8a9029dc0c9b697a
Author: Patrick Schleizer <[email protected]>
Date: Sun Sep 12 11:42:44 2021 -0400
bumped changelog version
commit 28d3eef79cfe70828bfe1bbe44bfcf79c5f4c593
Author: Patrick Schleizer <[email protected]>
Date: Sat Sep 11 16:33:51 2021 -0400
readme
commit e54394894a96c1a0f1cefd95676bcbd142c67add
Author: Patrick Schleizer <[email protected]>
Date: Sat Aug 28 13:54:16 2021 -0400
bumped changelog version
commit 2b2413d5f97a03560c4f4c88600ce0010e65f8e2
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 5 16:47:52 2021 -0400
bumped changelog version
commit 89254249098f7081ea3b029d6715f7c9882b9c1f
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 4 16:03:27 2021 -0400
lintian
commit 53caa09682651e7a7de554d78acb24151ccb803e
Author: Patrick Schleizer <[email protected]>
Date: Wed Aug 4 16:01:50 2021 -0400
re-generated man pages
commit b4cab3fcf728bca4783719eb2cd67b074e7ce6ba
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 11:47:33 2021 -0400
re-generate man pages (generated using "genmkfile manpages")
commit b7d67c0eb8d2fcce495c9ce3213462d5562ba8f1
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 11:43:33 2021 -0400
man page
commit 8169d9763e89e08bf80d56a8b59e6538b1a82f1a
Author: Patrick Schleizer <[email protected]>
Date: Tue Aug 3 05:48:22 2021 -0400
bullseye
commit 6eaecb7cb1d5202544ef5b5ebb680b81084dfa7f
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 1 16:32:12 2021 -0400
bullseye
commit f37f26053f42964f46a6bfc2f3c20908a11aeb08
Author: Patrick Schleizer <[email protected]>
Date: Sun Aug 1 16:24:33 2021 -0400
readme
commit 40f31f7351ea32ae84e785c632285cda91203bf1
Author: Patrick Schleizer <[email protected]>
Date: Thu Mar 18 09:05:55 2021 -0400
bumped changelog version
commit c04e59f03af45615b1a4390b5d14905677b51f3d
Author: Patrick Schleizer <[email protected]>
Date: Thu Mar 18 08:57:20 2021 -0400
copyright
commit db11450344e2f6d51c078e720b8498ac2ccea611
Author: Patrick Schleizer <[email protected]>
Date: Thu Mar 18 07:44:35 2021 -0400
bumped changelog version
commit a4c465baa95f865be0e7767fff232857a3aab757
Author: Patrick Schleizer <[email protected]>
Date: Thu Mar 18 07:39:48 2021 -0400
copyright
commit 13314c1731b39842943d4084db2bb744f4a08414
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 11:36:32 2021 -0400
bumped changelog version
commit 99e8876ea073604e396bcf102ed98a0c31427b70
Author: Patrick Schleizer <[email protected]>
Date: Wed Mar 17 09:45:16 2021 -0400
copyright
commit 370a6d563cc64b7f81824fd5f884ebba37a0a9a3
Author: Patrick Schleizer <[email protected]>
Date: Sat Feb 6 06:30:56 2021 -0500
bumped changelog version
commit 58588a837800c020ff6a380feb2bd14b683fdffe
Author: Patrick Schleizer <[email protected]>
Date: Sat Feb 6 06:27:53 2021 -0500
readme
commit 509e5327827dac4f279541da1aee0b8d4b4ce3e6
Author: Patrick Schleizer <[email protected]>
Date: Thu Dec 3 15:52:42 2020 -0500
bumped changelog version
commit bf8ea6f9db66dbde2a9133dc69f5185e94b7067f
Author: Patrick Schleizer <[email protected]>
Date: Thu Dec 3 11:21:18 2020 -0500
comment
commit 7fb3f9e9885977cac856ded31d80f6c737780518
Merge: e1eec9d 00c3495
Author: Vinnie Monaco <[email protected]>
Date: Thu Oct 8 13:32:15 2020 -0700
Merge pull request #32 from madaidan/apparmor
Fix AppArmor and seccomp
commit 3e61d1a6b5ac92ebbfbb8e55c5e85c79973e5bbc
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 8 13:40:45 2020 -0400
bumped changelog version
commit 7d02f04592f6f64fa9e472d7624c11645a5bf86b
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 8 13:40:45 2020 -0400
readme
commit 0f30fc2370f1406f979567cff60a3aee0e029d96
Merge: 1a13e75 00c3495
Author: Patrick Schleizer <[email protected]>
Date: Thu Oct 8 11:19:59 2020 -0400
Merge remote-tracking branch 'madaidan/apparmor'
commit 00c3495ffaa9df609d164aa1f020cd1e5db225ab
Author: madaidan <[email protected]>
Date: Thu Oct 8 12:38:42 2020 +0000
Allow getrandom
commit 6c260b638d8835dfe2cb09b7b54c65d8b35449ff
Author: madaidan <[email protected]>
Date: Thu Oct 8 12:37:58 2020 +0000
Allow access to more libraries
commit e1eec9ded59a8012d5cc9520bf897380a256fcd2
Merge: 6694368 bea5410
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 7 20:17:29 2020 -0700
Merge pull request #30 from itoffshore/alpine
add service script note for hardened kernels
commit bea5410a0a8f0b3bc8834a42c4c3322c6b8c6beb
Author: Stuart Cardall <[email protected]>
Date: Mon Sep 7 12:00:54 2020 +0100
add service script note for hardened kernels
* hardened kernels without CONFIG_USER_NS_UNPRIVILEGED fail to start
the kloak service if private namespaces are enabled.
commit 6694368db2588d828687f0846221f94ccf03e3fa
Merge: 652105d 1a13e75
Author: Vinnie Monaco <[email protected]>
Date: Sun Sep 6 20:16:05 2020 -0700
Merge pull request #29 from Whonix/master
packaging improvements and fixes
commit 1a13e7537bd87c46576fe79432855e4842cea255
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 6 07:33:56 2020 -0400
bumped changelog version
commit 9ededf2f727e93c7e91fa6988c841b140fce053f
Author: Patrick Schleizer <[email protected]>
Date: Thu Aug 6 07:31:49 2020 -0400
add `pread64`
Thanks to @haroonrafi / @pcrockett for the report!
fixes https://github.com/vmonaco/kloak/issues/28
commit 3abdb4faeca4f8af3449f7ca58b66e1e6c7fa7c6
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 16 08:36:54 2020 -0400
bumped changelog version
commit 0dc802c876b846151615f2076d258d29877c63d1
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 15 14:05:33 2020 -0400
readme
commit 94350cf07578c347a0ba054cc4314f6b054689f4
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 14:05:55 2020 -0400
bumped changelog version
commit fd25e68017becafc1d105d9f415d84425599a2d9
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 14:02:47 2020 -0400
Architecture: amd64
https://github.com/vmonaco/kloak/issues/24
https://github.com/vmonaco/kloak/issues/25
Actually building might be possible but cross building using qemu has issues.
https://github.com/vivier/qemu-m68k/issues/38
https://bugs.launchpad.net/qemu/+bug/1756519
https://bugs.launchpad.net/qemu/+bug/1793539
qemu:handle_cpu_signal received signal outside vCPU context @ pc=0x60269d8c
qemu:handle_cpu_signal received signal outside vCPU context @ pc=0x6000178c
commit 7631d7d1bd24353f8a89738f7d80f966988f3c4b
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:50:47 2020 -0400
bumped changelog version
commit 6ca7fbde8147fa90a5c44764490140f54e58656e
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:46:36 2020 -0400
fix packaging for build without genmkfile
commit dfeff821d06ce32b6918ba9f3f97f5d9ec45dfe5
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:27:10 2020 -0400
bumped changelog version
commit e03b8897c0c666f9c77c8b9714889fff5f60a6cd
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:09:26 2020 -0400
copyright
commit 9fe1fdf798a434fcc49a16d7eaa36267232f7712
Author: Patrick Schleizer <[email protected]>
Date: Sun Apr 5 13:08:44 2020 -0400
apparmor packaging fixes
commit ed1b360678ebddf6d6732d812e54179a76649fc1
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 4 16:40:52 2020 -0400
bumped changelog version
commit a12f457d2c5b7b58ecb3e07e5e56023123baf954
Author: Patrick Schleizer <[email protected]>
Date: Sat Apr 4 16:36:13 2020 -0400
actually can be build for arm64
commit 01bae31488ae1c9b86a214c25c0c8f806a05255e
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:51:28 2020 -0400
bumped changelog version
commit 44eb700387831b6152141ff06e16b2eb426845f1
Author: Patrick Schleizer <[email protected]>
Date: Thu Apr 2 07:22:38 2020 -0400
readme
commit 652105d67527b3bb24c3b86f219724998f20d83a
Merge: 54bef10 9733e77
Author: Vinnie Monaco <[email protected]>
Date: Wed Apr 1 15:51:08 2020 -0700
Merge pull request #26 from Whonix/master
packaging and apparmor improvements
commit 9733e77f2b3b551e209a8830dfb4d57b2f22f90a
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 16:32:15 2020 -0400
add debian install file
commit 56692cccff9a16766799ac6baf22702de8d958f5
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 15:56:48 2020 -0400
add man pages (generated using "genmkfile manpages")
commit 7093613c4723787d9e9c9a9dec4b5320a80c9a32
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 10:48:40 2020 -0400
bumped changelog version
commit 11db9d47895fb401a3ed97ea028ab25d53a6b76e
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 09:19:55 2020 -0400
copyright
commit 7121b5a21de24b9479d8df7e2b080154c8a82095
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 09:15:14 2020 -0400
copyright
commit a14a3938bb9adbadeff200a00e1d6bc07ecfc3ca
Author: Patrick Schleizer <[email protected]>
Date: Wed Apr 1 08:49:57 2020 -0400
update copyright year
commit aa7ca49556fdbae5f474c94caaa0d74b01be2b93
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 13 12:36:52 2020 -0500
bumped changelog version
commit 84fca49dc259c68b9d1caa61f4d7cddb78fb6ba9
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 13 12:36:11 2020 -0500
apparmor
commit 64d8f75748a5e7364584dab512003016475d7254
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 13 12:33:07 2020 -0500
bumped changelog version
commit 081fa02799e60f8e33e39c858fe13853e01c2b5f
Author: Patrick Schleizer <[email protected]>
Date: Mon Jan 13 12:30:40 2020 -0500
apparmor allow ptrace
https://forums.whonix.org/t/current-state-of-kloak/5605/19
commit ad4288a320da42c74649dc352b8b93c55bfec9be
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 1 07:22:03 2020 -0500
bumped changelog version
commit 4381af2f3a1dabc07330751eca1369eeb3e40655
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 1 07:14:38 2020 -0500
capability sys_ptrace,
https://forums.whonix.org/t/current-state-of-kloak/5605/17
commit 29b286926062f93cb222e355e1996093d6f682f4
Author: Patrick Schleizer <[email protected]>
Date: Wed Jan 1 07:12:50 2020 -0500
remove trailing spaces
commit a54eb9333552fefcb2a73310f8f832a046e25fa3
Author: Patrick Schleizer <[email protected]>
Date: Thu Nov 28 03:16:13 2019 -0500
bumped changelog version
commit 381c686d4d081bbf0547f5cf1e70df7f1ff095ca
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 10:26:02 2019 -0500
for now "Architecture: amd64"
https://github.com/vmonaco/kloak/issues/24#
https://github.com/vmonaco/kloak/issues/25
commit 076a61d3dc0b4daab4592637464077773cede43e
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 10:25:46 2019 -0500
comment
commit 7518394c3a3201e5b2138458ce6f01043908a084
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 07:25:48 2019 -0500
remove make_clean_hook_pre
since no longer required
since upstream Makefile now supports `make clean`
commit bd0a1bb25a8b8a4b26b8d10bb57372e4df951dac
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 07:24:52 2019 -0500
cleanup
commit 2fd3abd649eadc3797125d0bfbd50891454ba534
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 07:24:04 2019 -0500
allow building without genmkfile
using standard Debian tools
such as `dpkg-buildpackage -b`
commit a68357c55f7ea3923aa5ab0512a7b32f2f2646c1
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 07:21:25 2019 -0500
add man pages
created with ronn
created from markdown templates in folder man/
debian/eventcap.8
debian/kloak.8
commit 86209ea950c75f9e35bc89549086c174143905e8
Author: Patrick Schleizer <[email protected]>
Date: Wed Nov 27 07:20:15 2019 -0500
work towards support building without genmkfile
commit 8413f9fa474e6551b7fe515941a6f1deae430867
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 26 08:16:49 2019 +0000
version_numbers_by_upstream=true
commit 30869f354a1bd73ea75fd87a1673b949607fcdce
Author: Patrick Schleizer <[email protected]>
Date: Tue Nov 26 08:16:05 2019 +0000
make-helper-overrides.bsh -> debian/make-helper-overrides.bsh
commit f19cee00fd8c0851d103309096c9063c20103bb9
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 19 13:04:18 2019 +0000
bumped changelog version
commit 2f472a8eacdd58bc49c0ac4ab505b095dc0ee320
Merge: bccd504 54bef10
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 19 07:50:06 2019 -0400
Merge remote-tracking branch 'vmonaco/master'
commit 54bef108d45b9ca70b1ef5b0b8fa4142b7832d9b
Merge: 6f709ff 90dedd6
Author: Vinnie Monaco <[email protected]>
Date: Wed Sep 18 09:30:12 2019 -0700
Merge pull request #22 from madaidan/fix-apparmor
Allow certain signals needed to start/stop/restart kloak
commit 90dedd6efe115a10612c06bd1e2b3aecba314132
Author: madaidan <[email protected]>
Date: Wed Sep 18 16:05:22 2019 +0000
Allow certain signals needed to start/stop/restart kloak
commit 6f709ff7b8133a48701c90f713cfe21fcb529a27
Merge: f5ba897 bccd504
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 17 09:04:38 2019 -0700
Merge pull request #20 from Whonix/master
Apparmor Debian packaging integration
commit bccd504ff2ebe558c3b2c3977f128b192b7bfcf2
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 14:15:24 2019 +0000
bumped changelog version
commit 7abcaeeed0cf76a9fb6c585ce322de753b7a31db
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 07:35:47 2019 +0000
remove trailing spaces
commit ed26f834cf781c9e0a7abec038b0cf650b64bc5a
Merge: 6d29789 f5ba897
Author: Patrick Schleizer <[email protected]>
Date: Tue Sep 17 07:28:30 2019 +0000
Merge remote-tracking branch 'vmonaco/master'
commit f5ba8977bd36dd5412b2649cfd0adc055676fcab
Merge: 133804e a0d118b
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 16 16:19:14 2019 -0700
Merge pull request #18 from madaidan/systemd-sandbox
Add systemd sandboxing
commit 133804e65377023cb6adeada2d1d7688766ec067
Merge: 1bada28 887ec7b
Author: Vinnie Monaco <[email protected]>
Date: Mon Sep 16 16:17:47 2019 -0700
Merge pull request #19 from madaidan/apparmor-profile
Add AppArmor profile
commit 887ec7bd89fd69c724c1350041cc65acd06ce044
Author: madaidan <[email protected]>
Date: Mon Sep 16 16:41:56 2019 +0000
Create usr.sbin.kloak
commit 72ad9c9974b0fb85a8ee0ecc4aaee936e51e1699
Author: madaidan <[email protected]>
Date: Mon Sep 16 16:41:35 2019 +0000
Update usr.sbin.kloak
commit 78793d1a3607055edbabc66db2c6f066a9a7ecc6
Author: madaidan <[email protected]>
Date: Sun Sep 15 21:10:37 2019 +0000
Add AppArmor profile
commit a0d118b443d3d4c634ce47a5f37353f6a4661f47
Author: madaidan <[email protected]>
Date: Sat Sep 14 22:48:24 2019 +0000
Add systemd sandboxing
commit 6d297899bb08f7338a9f77209d90becfbc71c3d7
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 12 12:48:51 2019 +0000
bumped changelog version
commit 0445e2779d5cf8ff2ae27320f2bb7e5ee6e6a069
Merge: 5048819 1bada28
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 12 12:17:17 2019 +0000
Merge remote-tracking branch 'vmonaco/master'
commit 5048819fec985d11b1092b07c029e0b9092d7d8c
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 12 12:15:38 2019 +0000
restore upstream README.md
https://github.com/vmonaco/kloak/pull/14#issuecomment-530150750
commit 99841155fbf2dcb27988816ea77c48fa661dfad0
Author: Patrick Schleizer <[email protected]>
Date: Thu Sep 12 12:13:57 2019 +0000
readme
commit 1bada28010607c95991723054b7e07612e56c6c9
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 10 16:05:21 2019 -0700
typo
commit 91c2d90c7bac6b1231c400b6369836506438cc09
Author: Vinnie Monaco <[email protected]>
Date: Tue Sep 10 16:03:40 2019 -0700
updated readme