-
Notifications
You must be signed in to change notification settings - Fork 0
/
lynis.log
6161 lines (6161 loc) · 488 KB
/
lynis.log
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
2023-05-01 21:06:35 Starting Lynis 3.0.8 with PID 544277, build date 2022-05-17
2023-05-01 21:06:35 ====
2023-05-01 21:06:35 ### 2007-2021, CISOfy - https://cisofy.com/lynis/ ###
2023-05-01 21:06:35 Checking permissions of /usr/share/lynis/include/profiles
2023-05-01 21:06:35 File permissions are OK
2023-05-01 21:06:35 Reading profile/configuration /etc/lynis/default.prf
2023-05-01 21:06:35 Action: created temporary file /tmp/lynis.oCSm81FCDt
2023-05-01 21:06:35 Language set via profile to ''
2023-05-01 21:06:35 Plugin 'authentication' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'compliance' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'configuration' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'control-panels' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'crypto' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'dns' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'docker' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'file-integrity' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'file-systems' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'firewalls' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'forensics' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'hardware' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:35 Plugin 'intrusion-detection' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'intrusion-prevention' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'kernel' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'malware' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'memory' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'nginx' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'pam' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'processes' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'security-modules' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'software' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'system-integrity' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'systemd' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Plugin 'users' enabled according profile (/etc/lynis/default.prf)
2023-05-01 21:06:36 Set option to default value: NTPD_ROLE --> client
2023-05-01 21:06:36 ====
2023-05-01 21:06:36 EOL check: 255
2023-05-01 21:06:36 Note: the end-of-life of 'Ubuntu 22.04.2 LTS' could not be checked. Entry missing in software-eol.db?
2023-05-01 21:06:36 Program version: 3.0.8
2023-05-01 21:06:36 Operating system: Linux
2023-05-01 21:06:36 Operating system name: Ubuntu
2023-05-01 21:06:36 Operating system version: 22.04
2023-05-01 21:06:36 Kernel version: 5.15.0
2023-05-01 21:06:36 Kernel version (full): 5.15.0-71-generic
2023-05-01 21:06:36 Hardware platform: x86_64
2023-05-01 21:06:36 -----------------------------------------------------
2023-05-01 21:06:36 Hostname: safer
2023-05-01 21:06:36 Auditor: [Not Specified]
2023-05-01 21:06:36 Profiles: /etc/lynis/default.prf
2023-05-01 21:06:36 Work directory: /home/kiro
2023-05-01 21:06:36 Include directory: /usr/share/lynis/include
2023-05-01 21:06:36 Plugin directory: /usr/share/lynis/plugins
2023-05-01 21:06:36 -----------------------------------------------------
2023-05-01 21:06:36 Log file: /var/log/lynis.log
2023-05-01 21:06:36 Report file: /var/log/lynis-report.dat
2023-05-01 21:06:36 Report version: 1.0
2023-05-01 21:06:36 -----------------------------------------------------
2023-05-01 21:06:36 Test category: all
2023-05-01 21:06:36 Test group: all
2023-05-01 21:06:36 BusyBox used: 0
2023-05-01 21:06:36 ====
2023-05-01 21:06:36 Test: Checking for program update...
2023-05-01 21:06:36 Current installed version : 308
2023-05-01 21:06:36 Latest stable version : 308
2023-05-01 21:06:36 No Lynis update available.
2023-05-01 21:06:36 Suggestion: This release is more than 4 months old. Check the website or GitHub to see if there is an update available. [test:LYNIS] [details:-] [solution:-]
2023-05-01 21:06:36 ====
2023-05-01 21:06:36 Checking permissions of /usr/share/lynis/include/binaries
2023-05-01 21:06:36 File permissions are OK
2023-05-01 21:06:36 ====
2023-05-01 21:06:36 Action: Performing tests from category: System tools
2023-05-01 21:06:36 Start scanning for available audit binaries and tools...
2023-05-01 21:06:36 ====
2023-05-01 21:06:36 Performing test ID CORE-1000 (Check all system binaries)
2023-05-01 21:06:36 Status: Starting binary scan...
2023-05-01 21:06:36 Test: Checking binaries in directory /snap/bin
2023-05-01 21:06:36 Directory /snap/bin exists. Starting directory scanning...
2023-05-01 21:06:36 Test: Checking binaries in directory /bin
2023-05-01 21:06:36 Result: directory exists, but is actually a symlink
2023-05-01 21:06:36 Action: checking symlink for file /bin
2023-05-01 21:06:36 Setting temporary readlinkbinary variable
2023-05-01 21:06:36 Note: Using real readlink binary to determine symlink on /bin
2023-05-01 21:06:36 Result: readlink shows /usr/bin as output
2023-05-01 21:06:36 Result: symlink found, pointing to directory /usr/bin
2023-05-01 21:06:36 Result: found the path behind this symlink (/bin --> /usr/bin)
2023-05-01 21:06:36 Directory /usr/bin exists. Starting directory scanning...
2023-05-01 21:06:36 Found known binary: apt (package manager) - /usr/bin/apt
2023-05-01 21:06:36 Found known binary: as (compiler) - /usr/bin/as
2023-05-01 21:06:36 Found known binary: awk (string tool) - /usr/bin/awk
2023-05-01 21:06:36 Found known binary: base64 (encoding tool) - /usr/bin/base64
2023-05-01 21:06:36 Found known binary: bootctl (systemd-boot manager utility) - /usr/bin/bootctl
2023-05-01 21:06:36 Found known binary: cat (generic file handling) - /usr/bin/cat
2023-05-01 21:06:36 Found known binary: comm (file compare) - /usr/bin/comm
2023-05-01 21:06:37 Found known binary: curl (browser, download utility) - /usr/bin/curl
2023-05-01 21:06:37 Found known binary: cut (text stream editor) - /usr/bin/cut
2023-05-01 21:06:37 Found known binary: dig (network/dns tool) - /usr/bin/dig
2023-05-01 21:06:37 Found known binary: dnsdomainname (DNS domain) - /usr/bin/dnsdomainname
2023-05-01 21:06:37 Found known binary: domainname (NIS domain) - /usr/bin/domainname
2023-05-01 21:06:37 Found known binary: dpkg (package management) - /usr/bin/dpkg
2023-05-01 21:06:37 Found known binary: egrep (text search) - /usr/bin/egrep
2023-05-01 21:06:37 Found known binary: file (file type detection) - /usr/bin/file
2023-05-01 21:06:37 Found known binary: find (search tool) - /usr/bin/find
2023-05-01 21:06:37 Found known binary: getent (query tool for name service switch libraries) - /usr/bin/getent
2023-05-01 21:06:37 Found known binary: grep (text search) - /usr/bin/grep
2023-05-01 21:06:37 Found known binary: gzip (compressing utility) - /usr/bin/gzip
2023-05-01 21:06:37 Found known binary: head (text filter) - /usr/bin/head
2023-05-01 21:06:37 Found known binary: ip (IP configuration) - /usr/bin/ip
2023-05-01 21:06:37 Found known binary: journalctl (systemd journal) - /usr/bin/journalctl
2023-05-01 21:06:37 Found known binary: ls (file listing) - /usr/bin/ls
2023-05-01 21:06:37 Found known binary: lsattr (file attributes) - /usr/bin/lsattr
2023-05-01 21:06:37 Found known binary: lsblk (block devices) - /usr/bin/lsblk
2023-05-01 21:06:37 Found known binary: lsmod (kernel modules) - /usr/bin/lsmod
2023-05-01 21:06:37 Found known binary: lsof (open files) - /usr/bin/lsof
2023-05-01 21:06:37 Note: added -K i to ignore tasks on Linux
2023-05-01 21:06:37 Found known binary: md5sum (hash tool) - /usr/bin/md5sum
2023-05-01 21:06:37 Found known binary: mount (disk utility) - /usr/bin/mount
2023-05-01 21:06:37 Found /usr/bin/mysql (version: )
2023-05-01 21:06:37 Found known binary: netstat (network statistics) - /usr/bin/netstat
2023-05-01 21:06:37 Found /usr/bin/nmap (version 7.80)
2023-05-01 21:06:37 Found /usr/bin/openssl (version 3.0.2)
2023-05-01 21:06:37 Found /usr/bin/perl (version 5.34.0)
2023-05-01 21:06:37 Found known binary: pgrep (search in process list) - /usr/bin/pgrep
2023-05-01 21:06:37 Found known binary: ps (process listing) - /usr/bin/ps
2023-05-01 21:06:37 Found known binary: python3 (programming language interpreter) - /usr/bin/python3 (version 3.10.6)
2023-05-01 21:06:37 Found known binary: readlink (follows symlinks) - /usr/bin/readlink
2023-05-01 21:06:37 Found known binary: resolvectl (systemd-resolved DNS resolver manager) - /usr/bin/resolvectl
2023-05-01 21:06:37 Found known binary: rkhunter (malware scanner) - /usr/bin/rkhunter
2023-05-01 21:06:37 Found known binary: sed (text stream editor) - /usr/bin/sed
2023-05-01 21:06:37 Found known binary: sha1/sha1sum/shasum (crypto hashing) - /usr/bin/sha1sum
2023-05-01 21:06:37 Found known binary: sha256/sha256sum (crypto hashing) - /usr/bin/sha256sum
2023-05-01 21:06:37 Found known binary: sha1/sha1sum/shasum (crypto hashing) - /usr/bin/shasum
2023-05-01 21:06:37 Found known binary: sort (sort data streams) - /usr/bin/sort
2023-05-01 21:06:37 Found known binary: ss (show sockets) - /usr/bin/ss
2023-05-01 21:06:37 Found known binary: ssh-keyscan (scanner for SSH keys) - /usr/bin/ssh-keyscan
2023-05-01 21:06:37 Found known binary: stat (file information) - /usr/bin/stat
2023-05-01 21:06:37 Found known binary: strings (text strings search) - /usr/bin/strings
2023-05-01 21:06:37 Found known binary: systemctl (client to systemd) - /usr/bin/systemctl
2023-05-01 21:06:37 Found known binary: systemd-analyze (systemd service analysis tool) - /usr/bin/systemd-analyze
2023-05-01 21:06:37 Found known binary: tail (text filter) - /usr/bin/tail
2023-05-01 21:06:37 Found known binary: timedatectl (timedate client) - /usr/bin/timedatectl
2023-05-01 21:06:37 Found known binary: tr (text transformation) - /usr/bin/tr
2023-05-01 21:06:37 Found known binary: uname (operating system details) - /usr/bin/uname
2023-05-01 21:06:37 Found known binary: uniq (text manipulation utility) - /usr/bin/uniq
2023-05-01 21:06:37 Found known binary: vmtoolsd (VMWare tools) - /usr/bin/vmtoolsd
2023-05-01 21:06:37 Found known binary: wc (word count) - /usr/bin/wc
2023-05-01 21:06:37 Found /usr/bin/wget (version 1.21.2)
2023-05-01 21:06:37 Found known binary: xargs (command output redirection) - /usr/bin/xargs
2023-05-01 21:06:37 Found known binary: zgrep (text search for compressed files) - /usr/bin/zgrep
2023-05-01 21:06:37 Test: Checking binaries in directory /sbin
2023-05-01 21:06:37 Result: directory exists, but is actually a symlink
2023-05-01 21:06:37 Action: checking symlink for file /sbin
2023-05-01 21:06:37 Note: Using real readlink binary to determine symlink on /sbin
2023-05-01 21:06:37 Result: readlink shows /usr/sbin as output
2023-05-01 21:06:37 Result: symlink found, pointing to directory /usr/sbin
2023-05-01 21:06:37 Result: found the path behind this symlink (/sbin --> /usr/sbin)
2023-05-01 21:06:37 Directory /usr/sbin exists. Starting directory scanning...
2023-05-01 21:06:37 Found known binary: aa-status (apparmor component) - /usr/sbin/aa-status
2023-05-01 21:06:37 Found known binary: apache2 (web server) - /usr/sbin/apache2
2023-05-01 21:06:37 Found known binary: blkid (information about block devices) - /usr/sbin/blkid
2023-05-01 21:06:37 Found known binary: chkrootkit (malware scanner) - /usr/sbin/chkrootkit
2023-05-01 21:06:37 Found known binary: cryptsetup (block device encryption) - /usr/sbin/cryptsetup
2023-05-01 21:06:37 Found known binary: dmidecode (hardware collector tool) - /usr/sbin/dmidecode
2023-05-01 21:06:37 Found known binary: getcap (kernel capabilities) - /usr/sbin/getcap
2023-05-01 21:06:37 Found known binary: grpck (consistency checker) - /usr/sbin/grpck
2023-05-01 21:06:37 Found known binary: ipconfig (IP configuration) - /usr/sbin/ifconfig
2023-05-01 21:06:37 Found known binary: integritysetup (dm-integrity setup tool) - /usr/sbin/integritysetup
2023-05-01 21:06:37 Found known binary: ip (IP configuration) - /usr/sbin/ip
2023-05-01 21:06:37 Found known binary: iptables (firewall) - /usr/sbin/iptables
2023-05-01 21:06:37 Found known binary: iptables-save (firewall) - /usr/sbin/iptables-save
2023-05-01 21:06:37 Found known binary: logrotate (log rotation tool) - /usr/sbin/logrotate
2023-05-01 21:06:37 Found known binary: lsmod (kernel modules) - /usr/sbin/lsmod
2023-05-01 21:06:37 Found known binary: lvdisplay (LVM tool) - /usr/sbin/lvdisplay
2023-05-01 21:06:37 Found known binary: modprobe (kernel modules) - /usr/sbin/modprobe
2023-05-01 21:06:37 Found known binary: nft (nftables client) - /usr/sbin/nft
2023-05-01 21:06:37 Found known binary: postconf (postfix configuration) - /usr/sbin/postconf
2023-05-01 21:06:37 Found known binary: postfix (postfix binary) - /usr/sbin/postfix
2023-05-01 21:06:37 Found known binary: runlevel (system utility) - /usr/sbin/runlevel
2023-05-01 21:06:37 Found known binary: service (system services) - /usr/sbin/service
2023-05-01 21:06:37 Found /usr/sbin/sshd (version 8.9)
2023-05-01 21:06:37 Found known binary: swapon (swap device tool) - /usr/sbin/swapon
2023-05-01 21:06:37 Found known binary: sysctl (kernel parameters) - /usr/sbin/sysctl
2023-05-01 21:06:37 Found known binary: tripwire (file integrity) - /usr/sbin/tripwire
2023-05-01 21:06:37 Found known binary: tune2fs (file system tool) - /usr/sbin/tune2fs
2023-05-01 21:06:37 Found known binary: veritysetup (dm-verity setup tool) - /usr/sbin/veritysetup
2023-05-01 21:06:37 Found known binary: vgdisplay (LVM tool) - /usr/sbin/vgdisplay
2023-05-01 21:06:37 Test: Checking binaries in directory /usr/bin
2023-05-01 21:06:37 Result: Skipping this directory as it was already scanned
2023-05-01 21:06:37 Result: Directory /usr/bin skipped
2023-05-01 21:06:37 Test: Checking binaries in directory /usr/sbin
2023-05-01 21:06:37 Result: Skipping this directory as it was already scanned
2023-05-01 21:06:37 Result: Directory /usr/sbin skipped
2023-05-01 21:06:37 Test: Checking binaries in directory /usr/local/bin
2023-05-01 21:06:37 Directory /usr/local/bin exists. Starting directory scanning...
2023-05-01 21:06:37 Test: Checking binaries in directory /usr/local/sbin
2023-05-01 21:06:37 Directory /usr/local/sbin exists. Starting directory scanning...
2023-05-01 21:06:37 Discovered directories: /snap/bin,/usr/bin,/usr/sbin,/usr/local/bin,/usr/local/sbin
2023-05-01 21:06:37 Result: found 1570 binaries including 15 set-uid and 12 set-gid
2023-05-01 21:06:37 Result: set-uid binaries: /usr/bin/chfn /usr/bin/chsh /usr/bin/fusermount /usr/bin/fusermount3 /usr/bin/gpasswd /usr/bin/mount /usr/bin/newgrp /usr/bin/passwd /usr/bin/pkexec /usr/bin/sg /usr/bin/su /usr/bin/sudo /usr/bin/sudoedit /usr/bin/ubuntu-core-launcher /usr/bin/umount
2023-05-01 21:06:37 Result: set-gid binaries: /usr/bin/chage /usr/bin/crontab /usr/bin/dotlockfile /usr/bin/expiry /usr/bin/ssh-agent /usr/bin/wall /usr/bin/write /usr/bin/write.ul /usr/sbin/pam_extrausers_chkpwd /usr/sbin/postdrop /usr/sbin/postqueue /usr/sbin/unix_chkpwd
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Informational: package manager is used
2023-05-01 21:06:37 Test: Determine if this system is a virtual machine
2023-05-01 21:06:37 Result: facter utility not found
2023-05-01 21:06:37 Test: trying to guess virtualization technology with systemd-detect-virt
2023-05-01 21:06:37 Result: found kvm
2023-05-01 21:06:37 Result: skipped lscpu test, as we already found machine type
2023-05-01 21:06:37 Result: skipped dmidecode test, as we already found machine type
2023-05-01 21:06:37 Result: skipped processes test, as we already found platform
2023-05-01 21:06:37 Result: skipped Amazon EC2 test, as we already found platform
2023-05-01 21:06:37 Result: skipped sysctl test, as we already found platform
2023-05-01 21:06:37 Result: skipped lshw test, as we already found machine type
2023-05-01 21:06:37 Result: found virtual machine (type: kvm, KVM)
2023-05-01 21:06:37 Result: Lynis is not running in container
2023-05-01 21:06:37 Result: system is using systemd
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Action: Performing plugin tests
2023-05-01 21:06:37 Searching plugins...
2023-05-01 21:06:37 Result: Found 0 plugins of which 0 are enabled
2023-05-01 21:06:37 Result: Plugins phase 1 finished
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Info: found hashing tool, start generation of HostID
2023-05-01 21:06:37 Interface 'ens18' is up, fetching MAC address
2023-05-01 21:06:37 Info: using hardware address '76:11:aa:f6:73:9c' to create HostID
2023-05-01 21:06:37 Result: Found HostID: 0d5856327fad2d346f5a7ca511e6813b664b08ff
2023-05-01 21:06:37 Info: start generation of HostID (version 2)
2023-05-01 21:06:37 Result: found file ssh_host_ed25519_key.pub in /etc/ssh, using that as candidate to create hostid2
2023-05-01 21:06:37 Using SSH public key to create hostid2
2023-05-01 21:06:37 Hash (hostname): d3484d80eefb5a667b17f62ef22880e70975cedf49bcbb2fbe573b6655dd7580
2023-05-01 21:06:37 Hash (ssh or machineid): fdd370e7bea80ccc684bcc97d2503f2fa45be2fcce30d1ef3a69659a7622529e
2023-05-01 21:06:37 hostid-generation: method linux-sys-interface-up
2023-05-01 21:06:37 hostid2-generation: method ssh-public-key
2023-05-01 21:06:37 Info: HostID 0d5856327fad2d346f5a7ca511e6813b664b08ff looks to be valid
2023-05-01 21:06:37 Info: no machine ID found
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Info: perform tests from all categories
2023-05-01 21:06:37 Security check: file is normal
2023-05-01 21:06:37 Checking permissions of /usr/share/lynis/include/tests_boot_services
2023-05-01 21:06:37 File permissions are OK
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Action: Performing tests from category: Boot and services
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Skipped test BOOT-5102 (Check for AIX boot device)
2023-05-01 21:06:37 Reason to skip: Incorrect guest OS (AIX only)
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5104 (Determine service manager)
2023-05-01 21:06:37 Result: cmdline found = /sbin/init
2023-05-01 21:06:37 Result: file on disk = /sbin/init
2023-05-01 21:06:37 Action: checking symlink for file /sbin/init
2023-05-01 21:06:37 Note: Using real readlink binary to determine symlink on /sbin/init
2023-05-01 21:06:37 Result: readlink shows /usr/lib/systemd/systemd as output
2023-05-01 21:06:37 Result: symlink found, pointing to file /usr/lib/systemd/systemd
2023-05-01 21:06:37 Found: systemd
2023-05-01 21:06:37 Result: service manager found = systemd
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Skipped test BOOT-5106 (Check EFI boot file on Mac OS X/macOS)
2023-05-01 21:06:37 Reason to skip: Incorrect guest OS (macOS only)
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5108 (Check Syslinux as bootloader)
2023-05-01 21:06:37 Test: checking if file /boot/syslinux/syslinux.cfg exists
2023-05-01 21:06:37 Result: file /boot/syslinux/syslinux.cfg NOT found
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5109 (Check rEFInd as bootloader)
2023-05-01 21:06:37 Test: checking if file /boot/refind_linux.conf exists
2023-05-01 21:06:37 Result: file /boot/refind_linux.conf NOT found
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5116 (Check if system is booted in UEFI mode)
2023-05-01 21:06:37 Test: checking if UEFI is used
2023-05-01 21:06:37 Result: UEFI not used, can't find /sys/firmware/efi directory
2023-05-01 21:06:37 Test: determine if Secure Boot is used
2023-05-01 21:06:37 Result: system not booted with Secure Boot (no SecureBoot file found)
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Skipped test BOOT-5117 (Check for systemd-boot bootloader presence)
2023-05-01 21:06:37 Reason to skip: Prerequisites not met (ie missing tool, other type of Linux distribution)
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5121 (Check for GRUB boot loader presence)
2023-05-01 21:06:37 Test: Checking for presence GRUB conf file (/boot/grub/grub.conf or /boot/grub/menu.lst)
2023-05-01 21:06:37 Result: found GRUB2 configuration file (/boot/grub/grub.cfg)
2023-05-01 21:06:37 ====
2023-05-01 21:06:37 Performing test ID BOOT-5122 (Check for GRUB boot password)
2023-05-01 21:06:37 Found file /boot/grub/grub.cfg, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /boot/grub/grub.cfg (escaped: /boot/grub/grub.cfg)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /boot/grub/grub.cfg is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Result: File '/boot/grub/custom.cfg' does not exist
2023-05-01 21:06:37 Found file /etc/grub.d/30_uefi-firmware, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/30_uefi-firmware (escaped: /etc/grub.d/30_uefi-firmware)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/30_uefi-firmware is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/20_linux_xen, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/20_linux_xen (escaped: /etc/grub.d/20_linux_xen)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/20_linux_xen is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/41_custom, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/41_custom (escaped: /etc/grub.d/41_custom)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/41_custom is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/30_os-prober, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/30_os-prober (escaped: /etc/grub.d/30_os-prober)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/30_os-prober is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/05_debian_theme, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/05_debian_theme (escaped: /etc/grub.d/05_debian_theme)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/05_debian_theme is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/35_fwupd, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/35_fwupd (escaped: /etc/grub.d/35_fwupd)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/35_fwupd is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/10_linux_zfs, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/10_linux_zfs (escaped: /etc/grub.d/10_linux_zfs)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/10_linux_zfs is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/40_custom, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/40_custom (escaped: /etc/grub.d/40_custom)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/40_custom is readable (or directory accessible).
2023-05-01 21:06:37 Result: did not find hashed password line in this file
2023-05-01 21:06:37 Found file /etc/grub.d/00_header, proceeding with tests.
2023-05-01 21:06:37 Test: check if we can access /etc/grub.d/00_header (escaped: /etc/grub.d/00_header)
2023-05-01 21:06:37 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:37 Result: file /etc/grub.d/00_header is readable (or directory accessible).
2023-05-01 21:06:38 Result: did not find hashed password line in this file
2023-05-01 21:06:38 Found file /etc/grub.d/10_linux, proceeding with tests.
2023-05-01 21:06:38 Test: check if we can access /etc/grub.d/10_linux (escaped: /etc/grub.d/10_linux)
2023-05-01 21:06:38 Result: file is owned by our current user ID (0), checking if it is readable
2023-05-01 21:06:38 Result: file /etc/grub.d/10_linux is readable (or directory accessible).
2023-05-01 21:06:38 Result: did not find hashed password line in this file
2023-05-01 21:06:38 Result: Didn't find hashed password line in GRUB configuration
2023-05-01 21:06:38 Suggestion: Set a password on GRUB boot loader to prevent altering boot configuration (e.g. boot in single user mode without password) [test:BOOT-5122] [details:-] [solution:-]
2023-05-01 21:06:38 Hardening: assigned partial number of hardening points (0 of 2). Currently having 0 points (out of 2)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5124 (Check for FreeBSD boot loader presence)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (FreeBSD only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5261 (Check for DragonFly boot loader presence)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (DragonFly only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5126 (Check for NetBSD boot loader presence)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (NetBSD only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Performing test ID BOOT-5139 (Check for LILO boot loader presence)
2023-05-01 21:06:38 Test: checking for presence LILO configuration file
2023-05-01 21:06:38 Result: LILO configuration file not found
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Performing test ID BOOT-5140 (Check for ELILO boot loader presence)
2023-05-01 21:06:38 Test: checking if file /etc/elilo.conf exists
2023-05-01 21:06:38 Result: file /etc/elilo.conf NOT found
2023-05-01 21:06:38 Test: checking if file /boot/efi/EFI/Ubuntu/elilo.conf exists
2023-05-01 21:06:38 Result: file /boot/efi/EFI/Ubuntu/elilo.conf NOT found
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Performing test ID BOOT-5142 (Check SPARC Improved boot loader (SILO))
2023-05-01 21:06:38 Result: no SILO configuration file found.
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Performing test ID BOOT-5155 (Check for YABOOT boot loader configuration file)
2023-05-01 21:06:38 Test: Check for /etc/yaboot.conf
2023-05-01 21:06:38 Result: no YABOOT configuration file found.
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5159 (Check for OpenBSD boot loader presence)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (OpenBSD only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5165 (Check for FreeBSD boot services)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (FreeBSD only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Skipped test BOOT-5170 (Check for Solaris boot daemons)
2023-05-01 21:06:38 Reason to skip: Incorrect guest OS (Solaris only)
2023-05-01 21:06:38 ====
2023-05-01 21:06:38 Performing test ID BOOT-5177 (Check for Linux boot and running services)
2023-05-01 21:06:38 Test: checking presence systemctl binary
2023-05-01 21:06:38 Result: systemctl binary found, trying that to discover information
2023-05-01 21:06:38 Searching for running services (systemctl services only)
2023-05-01 21:06:38 Found running service: cron
2023-05-01 21:06:38 Found running service: dbus
2023-05-01 21:06:38 Found running service: getty@tty1
2023-05-01 21:06:38 Found running service: ModemManager
2023-05-01 21:06:38 Found running service: multipathd
2023-05-01 21:06:38 Found running service: mysql
2023-05-01 21:06:38 Found running service: networkd-dispatcher
2023-05-01 21:06:38 Found running service: packagekit
2023-05-01 21:06:38 Found running service: polkit
2023-05-01 21:06:38 Found running service: postfix@-
2023-05-01 21:06:38 Found running service: rsyslog
2023-05-01 21:06:38 Found running service: snapd
2023-05-01 21:06:38 Found running service: ssh
2023-05-01 21:06:38 Found running service: systemd-journald
2023-05-01 21:06:38 Found running service: systemd-logind
2023-05-01 21:06:38 Found running service: systemd-networkd
2023-05-01 21:06:38 Found running service: systemd-resolved
2023-05-01 21:06:38 Found running service: systemd-timesyncd
2023-05-01 21:06:38 Found running service: systemd-udevd
2023-05-01 21:06:38 Found running service: udisks2
2023-05-01 21:06:38 Found running service: unattended-upgrades
2023-05-01 21:06:38 Found running service: user@1000
2023-05-01 21:06:38 Hint: Run systemctl --full --type=service to see all services
2023-05-01 21:06:38 Result: Found 22 running services
2023-05-01 21:06:38 Searching for enabled services (systemctl services only)
2023-05-01 21:06:41 Found enabled service at boot: ModemManager
2023-05-01 21:06:41 Found enabled service at boot: acct
2023-05-01 21:06:41 Found enabled service at boot: apache2
2023-05-01 21:06:41 Found enabled service at boot: apparmor
2023-05-01 21:06:41 Found enabled service at boot: blk-availability
2023-05-01 21:06:41 Found enabled service at boot: cloud-config
2023-05-01 21:06:41 Found enabled service at boot: cloud-final
2023-05-01 21:06:41 Found enabled service at boot: cloud-init-local
2023-05-01 21:06:41 Found enabled service at boot: cloud-init
2023-05-01 21:06:41 Found enabled service at boot: console-setup
2023-05-01 21:06:41 Found enabled service at boot: cron
2023-05-01 21:06:41 Found enabled service at boot: dmesg
2023-05-01 21:06:41 Found enabled service at boot: e2scrub_reap
2023-05-01 21:06:41 Found enabled service at boot: finalrd
2023-05-01 21:06:41 Found enabled service at boot: getty@
2023-05-01 21:06:41 Found enabled service at boot: gpu-manager
2023-05-01 21:06:41 Found enabled service at boot: grub-common
2023-05-01 21:06:41 Found enabled service at boot: grub-initrd-fallback
2023-05-01 21:06:41 Found enabled service at boot: irqbalance
2023-05-01 21:06:41 Found enabled service at boot: keyboard-setup
2023-05-01 21:06:41 Found enabled service at boot: lvm2-monitor
2023-05-01 21:06:41 Found enabled service at boot: lxd-agent
2023-05-01 21:06:41 Found enabled service at boot: multipathd
2023-05-01 21:06:41 Found enabled service at boot: mysql
2023-05-01 21:06:41 Found enabled service at boot: networkd-dispatcher
2023-05-01 21:06:41 Found enabled service at boot: open-iscsi
2023-05-01 21:06:41 Found enabled service at boot: open-vm-tools
2023-05-01 21:06:41 Found enabled service at boot: pollinate
2023-05-01 21:06:41 Found enabled service at boot: postfix
2023-05-01 21:06:41 Found enabled service at boot: rsyslog
2023-05-01 21:06:41 Found enabled service at boot: secureboot-db
2023-05-01 21:06:41 Found enabled service at boot: setvtrgb
2023-05-01 21:06:41 Found enabled service at boot: snap.lxd.activate
2023-05-01 21:06:41 Found enabled service at boot: snapd.aa-prompt-listener
2023-05-01 21:06:41 Found enabled service at boot: snapd.apparmor
2023-05-01 21:06:41 Found enabled service at boot: snapd.autoimport
2023-05-01 21:06:41 Found enabled service at boot: snapd.core-fixup
2023-05-01 21:06:41 Found enabled service at boot: snapd.recovery-chooser-trigger
2023-05-01 21:06:41 Found enabled service at boot: snapd.seeded
2023-05-01 21:06:41 Found enabled service at boot: snapd
2023-05-01 21:06:41 Found enabled service at boot: snapd.system-shutdown
2023-05-01 21:06:41 Found enabled service at boot: ssh
2023-05-01 21:06:41 Found enabled service at boot: systemd-networkd-wait-online
2023-05-01 21:06:41 Found enabled service at boot: systemd-networkd
2023-05-01 21:06:41 Found enabled service at boot: systemd-pstore
2023-05-01 21:06:41 Found enabled service at boot: systemd-resolved
2023-05-01 21:06:41 Found enabled service at boot: systemd-timesyncd
2023-05-01 21:06:41 Found enabled service at boot: thermald
2023-05-01 21:06:41 Found enabled service at boot: ua-reboot-cmds
2023-05-01 21:06:41 Found enabled service at boot: ubuntu-advantage
2023-05-01 21:06:41 Found enabled service at boot: udisks2
2023-05-01 21:06:41 Found enabled service at boot: ufw
2023-05-01 21:06:41 Found enabled service at boot: unattended-upgrades
2023-05-01 21:06:41 Found enabled service at boot: vgauth
2023-05-01 21:06:41 Hint: Run systemctl list-unit-files --type=service to see all services
2023-05-01 21:06:41 Result: Found 54 enabled services
2023-05-01 21:06:41 ====
2023-05-01 21:06:41 Performing test ID BOOT-5180 (Check for Linux boot services (Debian style))
2023-05-01 21:06:41 Result: found runlevel 5
2023-05-01 21:06:41 Result: skipping further actions
2023-05-01 21:06:41 ====
2023-05-01 21:06:41 Performing test ID BOOT-5184 (Check permissions for boot files/scripts)
2023-05-01 21:06:41 Result: checking /etc/init.d scripts for writable bit
2023-05-01 21:06:41 Test: checking if directory /etc/init.d exists
2023-05-01 21:06:41 Result: directory /etc/init.d found
2023-05-01 21:06:41 Test: checking for available files in directory
2023-05-01 21:06:41 Result: found files in directory, checking permissions now
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/acct
2023-05-01 21:06:41 Result: good, file /etc/init.d/acct not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:41 Result: good, file /etc/init.d/apache-htcacheclean not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/apache2
2023-05-01 21:06:41 Result: good, file /etc/init.d/apache2 not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/apparmor
2023-05-01 21:06:41 Result: good, file /etc/init.d/apparmor not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/apport
2023-05-01 21:06:41 Result: good, file /etc/init.d/apport not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/console-setup.sh
2023-05-01 21:06:41 Result: good, file /etc/init.d/console-setup.sh not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/cron
2023-05-01 21:06:41 Result: good, file /etc/init.d/cron not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/cryptdisks
2023-05-01 21:06:41 Result: good, file /etc/init.d/cryptdisks not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/cryptdisks-early
2023-05-01 21:06:41 Result: good, file /etc/init.d/cryptdisks-early not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/dbus
2023-05-01 21:06:41 Result: good, file /etc/init.d/dbus not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/grub-common
2023-05-01 21:06:41 Result: good, file /etc/init.d/grub-common not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/hwclock.sh
2023-05-01 21:06:41 Result: good, file /etc/init.d/hwclock.sh not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/irqbalance
2023-05-01 21:06:41 Result: good, file /etc/init.d/irqbalance not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/iscsid
2023-05-01 21:06:41 Result: good, file /etc/init.d/iscsid not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/keyboard-setup.sh
2023-05-01 21:06:41 Result: good, file /etc/init.d/keyboard-setup.sh not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/kmod
2023-05-01 21:06:41 Result: good, file /etc/init.d/kmod not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/lvm2
2023-05-01 21:06:41 Result: good, file /etc/init.d/lvm2 not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/lvm2-lvmpolld
2023-05-01 21:06:41 Result: good, file /etc/init.d/lvm2-lvmpolld not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/multipath-tools
2023-05-01 21:06:41 Result: good, file /etc/init.d/multipath-tools not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/mysql
2023-05-01 21:06:41 Result: good, file /etc/init.d/mysql not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/open-iscsi
2023-05-01 21:06:41 Result: good, file /etc/init.d/open-iscsi not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/open-vm-tools
2023-05-01 21:06:41 Result: good, file /etc/init.d/open-vm-tools not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/plymouth
2023-05-01 21:06:41 Result: good, file /etc/init.d/plymouth not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/plymouth-log
2023-05-01 21:06:41 Result: good, file /etc/init.d/plymouth-log not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/postfix
2023-05-01 21:06:41 Result: good, file /etc/init.d/postfix not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/procps
2023-05-01 21:06:41 Result: good, file /etc/init.d/procps not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/rsync
2023-05-01 21:06:41 Result: good, file /etc/init.d/rsync not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/screen-cleanup
2023-05-01 21:06:41 Result: good, file /etc/init.d/screen-cleanup not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/ssh
2023-05-01 21:06:41 Result: good, file /etc/init.d/ssh not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/udev
2023-05-01 21:06:41 Result: good, file /etc/init.d/udev not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/ufw
2023-05-01 21:06:41 Result: good, file /etc/init.d/ufw not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/unattended-upgrades
2023-05-01 21:06:41 Result: good, file /etc/init.d/unattended-upgrades not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/init.d/uuidd
2023-05-01 21:06:41 Result: good, file /etc/init.d/uuidd not world writable
2023-05-01 21:06:41 Test: checking if directory /etc/rc.d exists
2023-05-01 21:06:41 Result: directory /etc/rc.d not found. Skipping..
2023-05-01 21:06:41 Test: checking if directory /etc/rcS.d exists
2023-05-01 21:06:41 Result: directory /etc/rcS.d found
2023-05-01 21:06:41 Test: checking for available files in directory
2023-05-01 21:06:41 Result: found files in directory, checking permissions now
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/K01iscsid
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/K01iscsid
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/K01iscsid
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/iscsid as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/iscsid
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/K01iscsid not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/K01open-iscsi
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/K01open-iscsi
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/K01open-iscsi
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-iscsi as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-iscsi
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/K01open-iscsi not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01apparmor
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01apparmor
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01apparmor
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apparmor as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apparmor
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01apparmor not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01cryptdisks
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01cryptdisks
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01cryptdisks
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/cryptdisks as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/cryptdisks
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01cryptdisks not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01cryptdisks-early
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01cryptdisks-early
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01cryptdisks-early
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/cryptdisks-early as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/cryptdisks-early
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01cryptdisks-early not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01keyboard-setup.sh
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01keyboard-setup.sh
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01keyboard-setup.sh
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/keyboard-setup.sh as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/keyboard-setup.sh
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01keyboard-setup.sh not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01kmod
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01kmod
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01kmod
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/kmod as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/kmod
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01kmod not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01lvm2
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01lvm2
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01lvm2
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/lvm2 as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/lvm2
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01lvm2 not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01plymouth-log
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01plymouth-log
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01plymouth-log
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/plymouth-log as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/plymouth-log
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01plymouth-log not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01procps
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01procps
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01procps
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/procps as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/procps
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01procps not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01screen-cleanup
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01screen-cleanup
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01screen-cleanup
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/screen-cleanup as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/screen-cleanup
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01screen-cleanup not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01udev
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01udev
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01udev
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/udev as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/udev
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01udev not world writable
2023-05-01 21:06:41 Test: checking permissions of file /etc/rcS.d/S01ufw
2023-05-01 21:06:41 Action: checking symlink for file /etc/rcS.d/S01ufw
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rcS.d/S01ufw
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/ufw as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/ufw
2023-05-01 21:06:41 Result: good, file /etc/rcS.d/S01ufw not world writable
2023-05-01 21:06:41 Test: Checking /etc/rc0.d scripts for writable bit
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01acct
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01acct
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/acct as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/acct
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01acct not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01apache-htcacheclean
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01apache-htcacheclean
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache-htcacheclean as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01apache-htcacheclean not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01apache2
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01apache2
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache2 as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache2
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01apache2 not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01cryptdisks
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01cryptdisks
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/cryptdisks as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/cryptdisks
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01cryptdisks not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01cryptdisks-early
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01cryptdisks-early
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/cryptdisks-early as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/cryptdisks-early
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01cryptdisks-early not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01irqbalance
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01irqbalance
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/irqbalance as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/irqbalance
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01irqbalance not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01iscsid
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01iscsid
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/iscsid as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/iscsid
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01iscsid not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01lvm2-lvmpolld
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01lvm2-lvmpolld
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/lvm2-lvmpolld as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/lvm2-lvmpolld
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01lvm2-lvmpolld not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01multipath-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01multipath-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/multipath-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/multipath-tools
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01multipath-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01mysql
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01mysql
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/mysql as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/mysql
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01mysql not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01open-iscsi
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01open-iscsi
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-iscsi as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-iscsi
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01open-iscsi not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01open-vm-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01open-vm-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-vm-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-vm-tools
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01open-vm-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01plymouth
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01plymouth
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/plymouth as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/plymouth
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01plymouth not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01postfix
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01postfix
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/postfix as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/postfix
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01postfix not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01udev
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01udev
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/udev as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/udev
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01udev not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01unattended-upgrades
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01unattended-upgrades
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/unattended-upgrades as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/unattended-upgrades
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01unattended-upgrades not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc0.d/K01uuidd
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc0.d/K01uuidd
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/uuidd as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/uuidd
2023-05-01 21:06:41 Result: good, file /etc/rc0.d/K01uuidd not world writable
2023-05-01 21:06:41 Test: Checking /etc/rc1.d scripts for writable bit
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01acct
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01acct
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/acct as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/acct
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01acct not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01apache-htcacheclean
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01apache-htcacheclean
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache-htcacheclean as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01apache-htcacheclean not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01apache2
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01apache2
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache2 as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache2
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01apache2 not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01irqbalance
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01irqbalance
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/irqbalance as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/irqbalance
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01irqbalance not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01iscsid
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01iscsid
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/iscsid as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/iscsid
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01iscsid not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01lvm2-lvmpolld
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01lvm2-lvmpolld
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/lvm2-lvmpolld as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/lvm2-lvmpolld
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01lvm2-lvmpolld not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01multipath-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01multipath-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/multipath-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/multipath-tools
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01multipath-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01mysql
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01mysql
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/mysql as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/mysql
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01mysql not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01open-iscsi
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01open-iscsi
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-iscsi as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-iscsi
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01open-iscsi not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01open-vm-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01open-vm-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-vm-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-vm-tools
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01open-vm-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01postfix
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01postfix
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/postfix as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/postfix
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01postfix not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01ufw
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01ufw
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/ufw as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/ufw
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01ufw not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc1.d/K01uuidd
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc1.d/K01uuidd
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/uuidd as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/uuidd
2023-05-01 21:06:41 Result: good, file /etc/rc1.d/K01uuidd not world writable
2023-05-01 21:06:41 Test: Checking /etc/rc2.d scripts for writable bit
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/K01apache-htcacheclean
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/K01apache-htcacheclean
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache-htcacheclean as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/K01apache-htcacheclean not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01acct
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01acct
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/acct as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/acct
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01acct not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01apache2
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01apache2
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache2 as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache2
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01apache2 not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01apport
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01apport
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apport as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apport
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01apport not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01console-setup.sh
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01console-setup.sh
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/console-setup.sh as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/console-setup.sh
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01console-setup.sh not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01cron
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01cron
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/cron as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/cron
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01cron not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01dbus
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01dbus
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/dbus as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/dbus
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01dbus not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01grub-common
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01grub-common
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/grub-common as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/grub-common
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01grub-common not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01irqbalance
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01irqbalance
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/irqbalance as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/irqbalance
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01irqbalance not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01lvm2-lvmpolld
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01lvm2-lvmpolld
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/lvm2-lvmpolld as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/lvm2-lvmpolld
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01lvm2-lvmpolld not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01multipath-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01multipath-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/multipath-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/multipath-tools
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01multipath-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01mysql
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01mysql
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/mysql as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/mysql
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01mysql not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01open-vm-tools
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01open-vm-tools
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/open-vm-tools as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/open-vm-tools
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01open-vm-tools not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01plymouth
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01plymouth
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/plymouth as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/plymouth
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01plymouth not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01postfix
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01postfix
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/postfix as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/postfix
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01postfix not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01rsync
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01rsync
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/rsync as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/rsync
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01rsync not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01ssh
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01ssh
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/ssh as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/ssh
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01ssh not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01unattended-upgrades
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01unattended-upgrades
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/unattended-upgrades as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/unattended-upgrades
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01unattended-upgrades not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc2.d/S01uuidd
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc2.d/S01uuidd
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/uuidd as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/uuidd
2023-05-01 21:06:41 Result: good, file /etc/rc2.d/S01uuidd not world writable
2023-05-01 21:06:41 Test: Checking /etc/rc3.d scripts for writable bit
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc3.d/K01apache-htcacheclean
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc3.d/K01apache-htcacheclean
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache-htcacheclean as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:41 Result: good, file /etc/rc3.d/K01apache-htcacheclean not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc3.d/S01acct
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01acct
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/acct as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/acct
2023-05-01 21:06:41 Result: good, file /etc/rc3.d/S01acct not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc3.d/S01apache2
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01apache2
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apache2 as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apache2
2023-05-01 21:06:41 Result: good, file /etc/rc3.d/S01apache2 not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc3.d/S01apport
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01apport
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/apport as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/apport
2023-05-01 21:06:41 Result: good, file /etc/rc3.d/S01apport not world writable
2023-05-01 21:06:41 Action: checking symlink for file /etc/rc3.d/S01console-setup.sh
2023-05-01 21:06:41 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01console-setup.sh
2023-05-01 21:06:41 Result: readlink shows /etc/init.d/console-setup.sh as output
2023-05-01 21:06:41 Result: symlink found, pointing to file /etc/init.d/console-setup.sh
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01console-setup.sh not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01cron
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01cron
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/cron as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/cron
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01cron not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01dbus
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01dbus
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/dbus as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/dbus
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01dbus not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01grub-common
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01grub-common
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/grub-common as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/grub-common
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01grub-common not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01irqbalance
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01irqbalance
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/irqbalance as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/irqbalance
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01irqbalance not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01lvm2-lvmpolld
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01lvm2-lvmpolld
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/lvm2-lvmpolld as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/lvm2-lvmpolld
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01lvm2-lvmpolld not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01multipath-tools
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01multipath-tools
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/multipath-tools as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/multipath-tools
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01multipath-tools not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01mysql
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01mysql
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/mysql as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/mysql
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01mysql not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01open-vm-tools
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01open-vm-tools
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/open-vm-tools as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/open-vm-tools
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01open-vm-tools not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01plymouth
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01plymouth
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/plymouth as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/plymouth
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01plymouth not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01postfix
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01postfix
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/postfix as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/postfix
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01postfix not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01rsync
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01rsync
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/rsync as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/rsync
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01rsync not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01ssh
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01ssh
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/ssh as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/ssh
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01ssh not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01unattended-upgrades
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01unattended-upgrades
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/unattended-upgrades as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/unattended-upgrades
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01unattended-upgrades not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc3.d/S01uuidd
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc3.d/S01uuidd
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/uuidd as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/uuidd
2023-05-01 21:06:42 Result: good, file /etc/rc3.d/S01uuidd not world writable
2023-05-01 21:06:42 Test: Checking /etc/rc4.d scripts for writable bit
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/K01apache-htcacheclean
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/K01apache-htcacheclean
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/apache-htcacheclean as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/apache-htcacheclean
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/K01apache-htcacheclean not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01acct
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01acct
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/acct as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/acct
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01acct not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01apache2
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01apache2
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/apache2 as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/apache2
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01apache2 not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01apport
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01apport
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/apport as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/apport
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01apport not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01console-setup.sh
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01console-setup.sh
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/console-setup.sh as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/console-setup.sh
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01console-setup.sh not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01cron
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01cron
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/cron as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/cron
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01cron not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01dbus
2023-05-01 21:06:42 Note: Using real readlink binary to determine symlink on /etc/rc4.d/S01dbus
2023-05-01 21:06:42 Result: readlink shows /etc/init.d/dbus as output
2023-05-01 21:06:42 Result: symlink found, pointing to file /etc/init.d/dbus
2023-05-01 21:06:42 Result: good, file /etc/rc4.d/S01dbus not world writable
2023-05-01 21:06:42 Action: checking symlink for file /etc/rc4.d/S01grub-common