-
Notifications
You must be signed in to change notification settings - Fork 6
/
linenum.out
1412 lines (1276 loc) · 72.9 KB
/
linenum.out
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
[00;31m#########################################################[00m
[00;31m#[00m [00;33mLocal Linux Enumeration & Privilege Escalation Script[00m [00;31m#[00m
[00;31m#########################################################[00m
[00;33m# www.rebootuser.com[00m
[00;33m# version 0.982[00m
[-] Debug Info
[00;33m[+] Thorough tests = Disabled[00m
[00;33mScan started at:
Fri Aug 13 13:46:21 UTC 2021
[00m
[00;33m### SYSTEM ##############################################[00m
[00;31m[-] Kernel information:[00m
Linux ip-10-115-54-51 5.4.0-1051-aws #53~18.04.1-Ubuntu SMP Fri Jun 18 14:53:38 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
[00;31m[-] Kernel information (continued):[00m
Linux version 5.4.0-1051-aws (buildd@lgw01-amd64-023) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #53~18.04.1-Ubuntu SMP Fri Jun 18 14:53:38 UTC 2021
[00;31m[-] Specific release information:[00m
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.5 LTS"
NAME="Ubuntu"
VERSION="18.04.5 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.5 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic
[00;31m[-] Hostname:[00m
ip-10-115-54-51
[00;33m### USER/GROUP ##########################################[00m
[00;31m[-] Current user/group info:[00m
uid=1003(lpuser) gid=1003(lpuser) groups=1003(lpuser)
[00;31m[-] Users that have previously logged onto the system:[00m
Username Port From Latest
ubuntu pts/0 52.70.167.183 Tue Jul 13 14:06:08 +0000 2021
lpuser pts/0 [REDACTED] Fri Aug 13 13:44:12 +0000 2021
[00;31m[-] Who else is logged on:[00m
13:46:21 up 41 min, 1 user, load average: 0.00, 0.00, 0.00
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
lpuser pts/0 [REDACTED] 13:44 5.00s 0.08s 0.00s /bin/bash ./LinEnum.sh
[00;31m[-] Group memberships:[00m
uid=0(root) gid=0(root) groups=0(root)
uid=1(daemon) gid=1(daemon) groups=1(daemon)
uid=2(bin) gid=2(bin) groups=2(bin)
uid=3(sys) gid=3(sys) groups=3(sys)
uid=4(sync) gid=65534(nogroup) groups=65534(nogroup)
uid=5(games) gid=60(games) groups=60(games)
uid=6(man) gid=12(man) groups=12(man)
uid=7(lp) gid=7(lp) groups=7(lp)
uid=8(mail) gid=8(mail) groups=8(mail)
uid=9(news) gid=9(news) groups=9(news)
uid=10(uucp) gid=10(uucp) groups=10(uucp)
uid=13(proxy) gid=13(proxy) groups=13(proxy)
uid=33(www-data) gid=33(www-data) groups=33(www-data)
uid=34(backup) gid=34(backup) groups=34(backup)
uid=38(list) gid=38(list) groups=38(list)
uid=39(irc) gid=39(irc) groups=39(irc)
uid=41(gnats) gid=41(gnats) groups=41(gnats)
uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
uid=100(systemd-network) gid=102(systemd-network) groups=102(systemd-network)
uid=101(systemd-resolve) gid=103(systemd-resolve) groups=103(systemd-resolve)
uid=102(syslog) gid=106(syslog) groups=106(syslog),4(adm)
uid=103(messagebus) gid=107(messagebus) groups=107(messagebus)
uid=104(_apt) gid=65534(nogroup) groups=65534(nogroup)
uid=105(lxd) gid=65534(nogroup) groups=65534(nogroup)
uid=106(uuidd) gid=110(uuidd) groups=110(uuidd)
uid=107(dnsmasq) gid=65534(nogroup) groups=65534(nogroup)
uid=108(landscape) gid=112(landscape) groups=112(landscape)
uid=109(sshd) gid=65534(nogroup) groups=65534(nogroup)
uid=110(pollinate) gid=1(daemon) groups=1(daemon)
uid=1000(ubuntu) gid=1000(ubuntu) groups=1000(ubuntu),4(adm),20(dialout),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),108(lxd),114(netdev)
uid=1001(local.adm) gid=1001(local.adm) groups=1001(local.adm)
uid=1002(ssm-user) gid=1002(ssm-user) groups=1002(ssm-user)
uid=1003(lpuser) gid=1003(lpuser) groups=1003(lpuser)
uid=999(cwagent) gid=999(cwagent) groups=999(cwagent)
uid=1004(psuser) gid=1004(psuser) groups=1004(psuser)
[00;31m[-] It looks like we have some admin users:[00m
uid=102(syslog) gid=106(syslog) groups=106(syslog),4(adm)
uid=1000(ubuntu) gid=1000(ubuntu) groups=1000(ubuntu),4(adm),20(dialout),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),108(lxd),114(netdev)
[00;31m[-] Contents of /etc/passwd:[00m
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-network:x:100:102:systemd Network Management,,,:/run/systemd/netif:/usr/sbin/nologin
systemd-resolve:x:101:103:systemd Resolver,,,:/run/systemd/resolve:/usr/sbin/nologin
syslog:x:102:106::/home/syslog:/usr/sbin/nologin
messagebus:x:103:107::/nonexistent:/usr/sbin/nologin
_apt:x:104:65534::/nonexistent:/usr/sbin/nologin
lxd:x:105:65534::/var/lib/lxd/:/bin/false
uuidd:x:106:110::/run/uuidd:/usr/sbin/nologin
dnsmasq:x:107:65534:dnsmasq,,,:/var/lib/misc:/usr/sbin/nologin
landscape:x:108:112::/var/lib/landscape:/usr/sbin/nologin
sshd:x:109:65534::/run/sshd:/usr/sbin/nologin
pollinate:x:110:1::/var/cache/pollinate:/bin/false
ubuntu:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash
local.adm:x:1001:1001::/home/local.adm:/bin/sh
ssm-user:x:1002:1002::/home/ssm-user:/bin/sh
lpuser:x:1003:1003:,,,:/home/lpuser:/bin/bash
cwagent:x:999:999:Cloudwatch Agent:/home/cwagent:/usr/sbin/nologin
psuser:x:1004:1004::/home/psuser:/bin/sh
[00;31m[-] Super user account(s):[00m
root
[00;31m[-] Are permissions on /home directories lax:[00m
total 28K
drwxr-xr-x 7 root root 4.0K Jul 6 18:53 .
drwxr-xr-x 24 root root 4.0K Aug 13 13:06 ..
drwxr-xr-x 3 local.adm local.adm 4.0K Jun 21 19:28 local.adm
drwxr-xr-x 7 lpuser lpuser 4.0K Aug 13 13:46 lpuser
drwxr-xr-x 3 psuser psuser 4.0K Aug 13 13:05 psuser
drwxr-xr-x 2 ssm-user ssm-user 4.0K Jun 22 15:03 ssm-user
drwxr-xr-x 6 ubuntu ubuntu 4.0K Aug 13 13:05 ubuntu
[00;33m### ENVIRONMENTAL #######################################[00m
[00;31m[-] Environment information:[00m
SSH_CONNECTION=[REDACTED] 59046 10.115.56.34 22
LESSCLOSE=/usr/bin/lesspipe %s %s
LANG=C.UTF-8
OLDPWD=/home/psuser
XDG_SESSION_ID=15
USER=lpuser
PWD=/home/lpuser
HOME=/home/lpuser
LC_TERMINAL=iTerm2
SSH_CLIENT=[REDACTED] 59046 22
LC_TERMINAL_VERSION=3.4.8
XDG_DATA_DIRS=/usr/local/share:/usr/share:/var/lib/snapd/desktop
SSH_TTY=/dev/pts/0
MAIL=/var/mail/lpuser
SHELL=/bin/bash
TERM=xterm-256color
SHLVL=2
LOGNAME=lpuser
XDG_RUNTIME_DIR=/run/user/1003
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
LESSOPEN=| /usr/bin/lesspipe %s
_=/usr/bin/env
[00;31m[-] Path information:[00m
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
drwxr-xr-x 2 root root 4096 Aug 13 13:06 /bin
drwxr-xr-x 2 root root 12288 Aug 13 13:06 /sbin
drwxr-xr-x 2 root root 4096 Aug 13 13:05 /snap/bin
drwxr-xr-x 2 root root 36864 Aug 13 13:06 /usr/bin
drwxr-xr-x 2 root root 4096 Apr 24 2018 /usr/games
drwxr-xr-x 2 root root 4096 Oct 2 2019 /usr/local/bin
drwxr-xr-x 2 root root 4096 Oct 2 2019 /usr/local/games
drwxr-xr-x 2 root root 4096 Oct 2 2019 /usr/local/sbin
drwxr-xr-x 2 root root 4096 Aug 13 13:06 /usr/sbin
[00;31m[-] Available shells:[00m
# /etc/shells: valid login shells
/bin/sh
/bin/bash
/bin/rbash
/bin/dash
/usr/bin/tmux
/usr/bin/screen
[00;31m[-] Current umask value:[00m
0002
u=rwx,g=rwx,o=rx
[00;31m[-] umask value as specified in /etc/login.defs:[00m
UMASK 022
[00;31m[-] Password and storage information:[00m
PASS_MAX_DAYS 99999
PASS_MIN_DAYS 0
PASS_WARN_AGE 7
ENCRYPT_METHOD SHA512
[00;33m### JOBS/TASKS ##########################################[00m
[00;31m[-] Cron jobs:[00m
-rw-r--r-- 1 root root 722 Nov 16 2017 /etc/crontab
/etc/cron.d:
total 20
drwxr-xr-x 2 root root 4096 Jun 21 19:30 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 102 Nov 16 2017 .placeholder
-rw-r--r-- 1 root root 589 Jan 30 2019 mdadm
-rw-r--r-- 1 root root 190 Oct 2 2019 popularity-contest
/etc/cron.daily:
total 56
drwxr-xr-x 2 root root 4096 Jul 13 12:51 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 102 Nov 16 2017 .placeholder
-rwxr-xr-x 1 root root 376 Nov 20 2017 apport
-rwxr-xr-x 1 root root 1478 Apr 20 2018 apt-compat
-rwxr-xr-x 1 root root 355 Dec 29 2017 bsdmainutils
-rwxr-xr-x 1 root root 1176 Nov 2 2017 dpkg
-rwxr-xr-x 1 root root 372 Aug 21 2017 logrotate
-rwxr-xr-x 1 root root 1065 Apr 7 2018 man-db
-rwxr-xr-x 1 root root 539 Jan 30 2019 mdadm
-rwxr-xr-x 1 root root 538 Mar 1 2018 mlocate
-rwxr-xr-x 1 root root 249 Jan 25 2018 passwd
-rwxr-xr-x 1 root root 3477 Feb 21 2018 popularity-contest
-rwxr-xr-x 1 root root 214 Nov 12 2018 update-notifier-common
/etc/cron.hourly:
total 12
drwxr-xr-x 2 root root 4096 Oct 2 2019 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 102 Nov 16 2017 .placeholder
/etc/cron.monthly:
total 12
drwxr-xr-x 2 root root 4096 Oct 2 2019 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 102 Nov 16 2017 .placeholder
/etc/cron.weekly:
total 20
drwxr-xr-x 2 root root 4096 Jun 21 19:30 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 102 Nov 16 2017 .placeholder
-rwxr-xr-x 1 root root 723 Apr 7 2018 man-db
-rwxr-xr-x 1 root root 211 Nov 12 2018 update-notifier-common
[00;31m[-] Crontab contents:[00m
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
[00;31m[-] Jobs held by all users:[00m
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
@reboot /home/lpuser/lp/runLp.sh >> /home/lpuser/lp/lp.log 2>&1
[00;31m[-] Systemd timers:[00m
NEXT LEFT LAST PASSED UNIT ACTIVATES
Fri 2021-08-13 15:38:54 UTC 1h 52min left Fri 2021-08-13 13:04:53 UTC 41min ago ua-messaging.timer ua-messaging.service
Sat 2021-08-14 00:53:49 UTC 11h left Fri 2021-08-13 13:04:53 UTC 41min ago apt-daily.timer apt-daily.service
Sat 2021-08-14 06:18:51 UTC 16h left Fri 2021-08-13 13:04:53 UTC 41min ago apt-daily-upgrade.timer apt-daily-upgrade.service
Sat 2021-08-14 08:52:50 UTC 19h left Fri 2021-08-13 13:04:53 UTC 41min ago motd-news.timer motd-news.service
Sat 2021-08-14 13:19:59 UTC 23h left Fri 2021-08-13 13:19:59 UTC 26min ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
Mon 2021-08-16 00:00:00 UTC 2 days left Fri 2021-08-13 13:04:53 UTC 41min ago fstrim.timer fstrim.service
6 timers listed.
[2mEnable thorough tests to see inactive timers[00m
[00;33m### NETWORKING ##########################################[00m
[00;31m[-] Network and IP info:[00m
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 9001
inet 10.115.56.34 netmask 255.255.255.0 broadcast 10.115.56.255
inet6 fe80::1036:ceff:fe0a:a0b9 prefixlen 64 scopeid 0x20<link>
ether 12:36:ce:0a:a0:b9 txqueuelen 1000 (Ethernet)
RX packets 96822 bytes 130299498 (130.2 MB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 14411 bytes 10349739 (10.3 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 234 bytes 20872 (20.8 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 234 bytes 20872 (20.8 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
[00;31m[-] ARP history:[00m
_gateway (10.115.56.1) at 12:c2:2c:88:53:cd [ether] on eth0
[00;31m[-] Nameserver(s):[00m
nameserver 127.0.0.53
[00;31m[-] Nameserver(s):[00m
Global
DNSSEC NTA: 10.in-addr.arpa
16.172.in-addr.arpa
168.192.in-addr.arpa
17.172.in-addr.arpa
18.172.in-addr.arpa
19.172.in-addr.arpa
20.172.in-addr.arpa
21.172.in-addr.arpa
22.172.in-addr.arpa
23.172.in-addr.arpa
24.172.in-addr.arpa
25.172.in-addr.arpa
26.172.in-addr.arpa
27.172.in-addr.arpa
28.172.in-addr.arpa
29.172.in-addr.arpa
30.172.in-addr.arpa
31.172.in-addr.arpa
corp
d.f.ip6.arpa
home
internal
intranet
lan
local
private
test
Link 2 (eth0)
Current Scopes: DNS
LLMNR setting: yes
MulticastDNS setting: no
DNSSEC setting: no
DNSSEC supported: no
DNS Servers: 10.115.54.2
DNS Domain: ec2.internal
[00;31m[-] Default route:[00m
default _gateway 0.0.0.0 UG 100 0 0 eth0
[00;31m[-] Listening TCP:[00m
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:6666 0.0.0.0:* LISTEN 2220/python3
tcp6 0 0 :::22 :::* LISTEN -
[00;31m[-] Listening UDP:[00m
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
udp 0 0 127.0.0.53:53 0.0.0.0:* -
udp 0 0 10.115.56.34:68 0.0.0.0:* -
[00;33m### SERVICES #############################################[00m
[00;31m[-] Running processes:[00m
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.2 0.9 225080 9060 ? Ss 13:04 0:05 /lib/systemd/systemd --system --deserialize 39
root 2 0.0 0.0 0 0 ? S 13:04 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? I< 13:04 0:00 [rcu_gp]
root 4 0.0 0.0 0 0 ? I< 13:04 0:00 [rcu_par_gp]
root 6 0.0 0.0 0 0 ? I< 13:04 0:00 [kworker/0:0H-kb]
root 9 0.0 0.0 0 0 ? I< 13:04 0:00 [mm_percpu_wq]
root 10 0.0 0.0 0 0 ? R 13:04 0:00 [ksoftirqd/0]
root 11 0.0 0.0 0 0 ? R 13:04 0:00 [rcu_sched]
root 12 0.0 0.0 0 0 ? S 13:04 0:00 [migration/0]
root 13 0.0 0.0 0 0 ? S 13:04 0:00 [cpuhp/0]
root 14 0.0 0.0 0 0 ? S 13:04 0:00 [kdevtmpfs]
root 15 0.0 0.0 0 0 ? I< 13:04 0:00 [netns]
root 16 0.0 0.0 0 0 ? S 13:04 0:00 [rcu_tasks_kthre]
root 17 0.0 0.0 0 0 ? S 13:04 0:00 [kauditd]
root 18 0.0 0.0 0 0 ? S 13:04 0:00 [khungtaskd]
root 19 0.0 0.0 0 0 ? S 13:04 0:00 [oom_reaper]
root 20 0.0 0.0 0 0 ? I< 13:04 0:00 [writeback]
root 21 0.0 0.0 0 0 ? S 13:04 0:00 [kcompactd0]
root 22 0.0 0.0 0 0 ? SN 13:04 0:00 [ksmd]
root 23 0.0 0.0 0 0 ? SN 13:04 0:00 [khugepaged]
root 69 0.0 0.0 0 0 ? I< 13:04 0:00 [kintegrityd]
root 70 0.0 0.0 0 0 ? I< 13:04 0:00 [kblockd]
root 71 0.0 0.0 0 0 ? I< 13:04 0:00 [blkcg_punt_bio]
root 72 0.0 0.0 0 0 ? I< 13:04 0:00 [tpm_dev_wq]
root 73 0.0 0.0 0 0 ? I< 13:04 0:00 [ata_sff]
root 74 0.0 0.0 0 0 ? I< 13:04 0:00 [md]
root 75 0.0 0.0 0 0 ? I< 13:04 0:00 [edac-poller]
root 76 0.0 0.0 0 0 ? I< 13:04 0:00 [devfreq_wq]
root 77 0.0 0.0 0 0 ? S 13:04 0:00 [watchdogd]
root 80 0.0 0.0 0 0 ? S 13:04 0:00 [kswapd0]
root 81 0.0 0.0 0 0 ? S 13:04 0:00 [ecryptfs-kthrea]
root 83 0.0 0.0 0 0 ? I< 13:04 0:00 [kthrotld]
root 84 0.0 0.0 0 0 ? S 13:04 0:00 [xenbus]
root 85 0.0 0.0 0 0 ? S 13:04 0:00 [xenwatch]
root 86 0.0 0.0 0 0 ? I< 13:04 0:00 [nvme-wq]
root 87 0.0 0.0 0 0 ? I< 13:04 0:00 [nvme-reset-wq]
root 88 0.0 0.0 0 0 ? I< 13:04 0:00 [nvme-delete-wq]
root 89 0.0 0.0 0 0 ? S 13:04 0:00 [scsi_eh_0]
root 90 0.0 0.0 0 0 ? I< 13:04 0:00 [scsi_tmf_0]
root 91 0.0 0.0 0 0 ? S 13:04 0:00 [scsi_eh_1]
root 92 0.0 0.0 0 0 ? I< 13:04 0:00 [scsi_tmf_1]
root 94 0.0 0.0 0 0 ? I< 13:04 0:00 [kworker/0:1H-kb]
root 95 0.0 0.0 0 0 ? I< 13:04 0:00 [ipv6_addrconf]
root 104 0.0 0.0 0 0 ? I< 13:04 0:00 [kstrp]
root 107 0.0 0.0 0 0 ? I< 13:04 0:00 [kworker/u31:0]
root 170 0.0 0.0 0 0 ? I< 13:04 0:00 [cryptd]
root 277 0.0 0.0 0 0 ? I< 13:04 0:00 [raid5wq]
root 328 0.0 0.0 0 0 ? S 13:04 0:00 [jbd2/xvda1-8]
root 329 0.0 0.0 0 0 ? I< 13:04 0:00 [ext4-rsv-conver]
root 424 0.0 0.0 0 0 ? I< 13:04 0:00 [iscsi_eh]
root 437 0.0 0.0 0 0 ? I< 13:04 0:00 [ib-comp-wq]
root 438 0.0 0.0 0 0 ? I< 13:04 0:00 [ib-comp-unb-wq]
root 439 0.0 0.0 0 0 ? I< 13:04 0:00 [ib_mcast]
root 440 0.0 0.0 0 0 ? I< 13:04 0:00 [ib_nl_sa_wq]
root 442 0.0 0.0 0 0 ? I< 13:04 0:00 [rdma_cm]
root 443 0.0 0.1 105908 1892 ? Ss 13:04 0:00 /sbin/lvmetad -f
root 519 0.0 0.0 0 0 ? S< 13:04 0:00 [loop1]
root 532 0.0 0.0 0 0 ? S< 13:04 0:00 [loop2]
root 537 0.0 0.0 0 0 ? S< 13:04 0:00 [loop4]
root 840 0.0 0.2 31752 2988 ? Ss 13:04 0:00 /usr/sbin/cron -f
root 843 0.0 0.2 59236 2752 ? S 13:04 0:00 /usr/sbin/CRON -f
root 844 0.0 0.2 59236 2752 ? S 13:04 0:00 /usr/sbin/CRON -f
message+ 846 0.0 0.4 50360 4504 ? Ss 13:04 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
lpuser 850 0.0 0.0 4632 768 ? Ss 13:04 0:00 /bin/sh -c /home/lpuser/lp/runLp.sh >> /home/lpuser/lp/lp.log 2>&1
psuser 851 0.0 0.0 4632 760 ? Ss 13:04 0:00 /bin/sh -c /home/psuser/runPs.sh >> /home/psuser/pslp.log 2>&1
psuser 853 0.0 0.2 13316 2172 ? S 13:04 0:00 /bin/bash /home/psuser/runPs.sh
lpuser 854 0.0 0.2 13316 2176 ? S 13:04 0:00 /bin/bash /home/lpuser/lp/runLp.sh
syslog 859 0.0 0.4 263040 4076 ? Ssl 13:04 0:00 /usr/sbin/rsyslogd -n
root 868 0.0 1.5 170828 15352 ? Ssl 13:04 0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
root 870 0.0 0.1 161080 1636 ? Ssl 13:04 0:00 /usr/bin/lxcfs /var/lib/lxcfs/
daemon 871 0.0 0.2 28336 2112 ? Ss 13:04 0:00 /usr/sbin/atd -f
root 882 0.0 0.5 70544 5752 ? Ss 13:04 0:00 /lib/systemd/systemd-logind
root 883 0.0 0.6 288000 6568 ? Ssl 13:04 0:00 /usr/lib/accountsservice/accounts-daemon
root 884 0.0 0.0 4556 832 ? Ss 13:04 0:00 /usr/sbin/acpid
root 908 0.0 1.6 187680 16312 ? Ssl 13:04 0:00 /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
root 910 0.0 0.6 291452 6928 ? Ssl 13:04 0:00 /usr/lib/policykit-1/polkitd --no-debug
root 937 0.0 0.2 16416 2232 ttyS0 Ss+ 13:04 0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
root 939 0.0 0.1 14892 1760 tty1 Ss+ 13:04 0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root 1300 0.0 0.3 107988 3716 ? Ss 13:04 0:00 sshd: ubuntu [priv]
ubuntu 1304 0.0 0.7 76520 7044 ? Ss 13:04 0:00 /lib/systemd/systemd --user
ubuntu 1305 0.0 0.2 111484 2164 ? S 13:04 0:00 (sd-pam)
ubuntu 1600 0.0 0.2 107988 2844 ? S 13:05 0:00 sshd: ubuntu@notty
ubuntu 1601 0.0 0.1 13064 1872 ? Ss 13:05 0:00 /usr/lib/openssh/sftp-server
root 2049 0.0 0.0 0 0 ? S< 13:05 0:00 [loop5]
root 2187 0.0 0.0 0 0 ? S< 13:05 0:00 [loop6]
psuser 2219 0.0 0.0 1240 644 ? S 13:05 0:00 ./powershell_lp
lpuser 2220 0.0 1.3 213948 13672 ? Sl 13:05 0:00 python3 lp.py
root 2258 0.1 3.3 656016 34024 ? Ssl 13:05 0:02 /usr/lib/snapd/snapd
root 2531 0.0 0.0 0 0 ? S< 13:05 0:00 [loop3]
root 3891 0.0 0.4 43036 4152 ? Ss 13:06 0:00 /lib/systemd/systemd-udevd
root 8751 0.0 0.6 72304 6192 ? Ss 13:06 0:00 /usr/sbin/sshd -D
systemd+ 9191 0.0 0.5 79912 5272 ? Ss 13:06 0:00 /lib/systemd/systemd-networkd
systemd+ 9208 0.0 0.5 70492 5028 ? Ss 13:06 0:00 /lib/systemd/systemd-resolved
systemd+ 9212 0.0 0.3 141784 3136 ? Ssl 13:06 0:00 /lib/systemd/systemd-timesyncd
root 9215 0.0 1.4 127356 14652 ? S<s 13:06 0:00 /lib/systemd/systemd-journald
root 16357 0.0 0.0 0 0 ? I< 13:06 0:00 [xfsalloc]
root 16365 0.0 0.0 0 0 ? I< 13:06 0:00 [xfs_mru_cache]
root 16976 0.0 0.0 0 0 ? I 13:20 0:00 [kworker/u30:2-e]
root 17328 0.0 0.0 0 0 ? I 13:28 0:00 [kworker/u30:0-e]
root 17621 0.0 0.0 0 0 ? I 13:34 0:00 [kworker/0:3-eve]
root 17980 0.0 0.0 0 0 ? I 13:40 0:00 [kworker/0:1-eve]
root 18155 0.0 0.7 107988 7248 ? Ss 13:44 0:00 sshd: lpuser [priv]
lpuser 18157 0.0 0.7 76524 7212 ? Ss 13:44 0:00 /lib/systemd/systemd --user
lpuser 18158 0.0 0.2 259060 2380 ? S 13:44 0:00 (sd-pam)
lpuser 18233 0.0 0.3 107988 3632 ? S 13:44 0:00 sshd: lpuser@pts/0
lpuser 18234 0.0 0.5 23216 5340 pts/0 Ss 13:44 0:00 -bash
root 18456 0.0 0.0 0 0 ? I 13:46 0:00 [kworker/0:0-eve]
lpuser 18536 0.0 0.4 14236 4060 pts/0 S+ 13:46 0:00 /bin/bash ./LinEnum.sh
lpuser 18537 0.0 0.3 14236 3016 pts/0 S+ 13:46 0:00 /bin/bash ./LinEnum.sh
lpuser 18538 0.0 0.0 7932 780 pts/0 S+ 13:46 0:00 tee -a
lpuser 18737 0.0 0.2 14236 2824 pts/0 S+ 13:46 0:00 /bin/bash ./LinEnum.sh
lpuser 18738 0.0 0.3 40096 3516 pts/0 R+ 13:46 0:00 ps aux
[00;31m[-] Process binaries and associated permissions (from above list):[00m
1.1M -rwxr-xr-x 1 root root 1.1M Jun 6 2019 /bin/bash
0 lrwxrwxrwx 1 root root 4 Oct 2 2019 /bin/sh -> dash
1.6M -rwxr-xr-x 1 root root 1.6M Jul 21 18:51 /lib/systemd/systemd
128K -rwxr-xr-x 1 root root 127K Jul 21 18:51 /lib/systemd/systemd-journald
216K -rwxr-xr-x 1 root root 215K Jul 21 18:51 /lib/systemd/systemd-logind
1.6M -rwxr-xr-x 1 root root 1.6M Jul 21 18:51 /lib/systemd/systemd-networkd
376K -rwxr-xr-x 1 root root 375K Jul 21 18:51 /lib/systemd/systemd-resolved
40K -rwxr-xr-x 1 root root 39K Jul 21 18:51 /lib/systemd/systemd-timesyncd
572K -rwxr-xr-x 1 root root 571K Jul 21 18:51 /lib/systemd/systemd-udevd
56K -rwxr-xr-x 1 root root 56K Sep 16 2020 /sbin/agetty
84K -rwxr-xr-x 1 root root 83K Jan 23 2020 /sbin/lvmetad
232K -rwxr-xr-x 1 root root 232K Jun 11 2020 /usr/bin/dbus-daemon
20K -rwxr-xr-x 1 root root 19K Mar 31 2020 /usr/bin/lxcfs
0 lrwxrwxrwx 1 root root 9 Oct 25 2018 /usr/bin/python3 -> python3.6
180K -rwxr-xr-x 1 root root 179K Nov 2 2020 /usr/lib/accountsservice/accounts-daemon
104K -rwxr-xr-x 1 root root 104K Aug 11 18:02 /usr/lib/openssh/sftp-server
16K -rwxr-xr-x 1 root root 15K Mar 27 2019 /usr/lib/policykit-1/polkitd
22M -rwxr-xr-x 1 root root 22M Mar 26 15:49 /usr/lib/snapd/snapd
52K -rwxr-xr-x 1 root root 51K Apr 28 2017 /usr/sbin/acpid
28K -rwxr-xr-x 1 root root 27K Feb 20 2018 /usr/sbin/atd
48K -rwxr-xr-x 1 root root 47K Nov 16 2017 /usr/sbin/cron
668K -rwxr-xr-x 1 root root 665K Apr 24 2018 /usr/sbin/rsyslogd
776K -rwxr-xr-x 1 root root 773K Aug 11 18:02 /usr/sbin/sshd
[00;31m[-] /etc/init.d/ binary permissions:[00m
total 176
drwxr-xr-x 2 root root 4096 Aug 13 13:06 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rwxr-xr-x 1 root root 2269 Apr 22 2017 acpid
-rwxr-xr-x 1 root root 4335 Mar 22 2018 apparmor
-rwxr-xr-x 1 root root 2805 Feb 27 2020 apport
-rwxr-xr-x 1 root root 1071 Aug 21 2015 atd
-rwxr-xr-x 1 root root 1232 Apr 19 2018 console-setup.sh
-rwxr-xr-x 1 root root 3049 Nov 16 2017 cron
-rwxr-xr-x 1 root root 937 Mar 18 2018 cryptdisks
-rwxr-xr-x 1 root root 978 Mar 18 2018 cryptdisks-early
-rwxr-xr-x 1 root root 2813 Nov 15 2017 dbus
-rwxr-xr-x 1 root root 4489 Jun 28 2018 ebtables
-rwxr-xr-x 1 root root 985 Mar 18 2019 grub-common
-rwxr-xr-x 1 root root 1677 Nov 20 2017 hibagent
-rwxr-xr-x 1 root root 3809 Feb 14 2018 hwclock.sh
-rwxr-xr-x 1 root root 2444 Oct 25 2017 irqbalance
-rwxr-xr-x 1 root root 1503 Dec 12 2018 iscsid
-rwxr-xr-x 1 root root 1479 Feb 15 2018 keyboard-setup.sh
-rwxr-xr-x 1 root root 2044 Aug 15 2017 kmod
-rwxr-xr-x 1 root root 695 Dec 3 2017 lvm2
-rwxr-xr-x 1 root root 571 Dec 3 2017 lvm2-lvmetad
-rwxr-xr-x 1 root root 586 Dec 3 2017 lvm2-lvmpolld
-rwxr-xr-x 1 root root 2378 Nov 23 2018 lxcfs
-rwxr-xr-x 1 root root 2240 Nov 23 2018 lxd
-rwxr-xr-x 1 root root 2653 Jan 30 2019 mdadm
-rwxr-xr-x 1 root root 1249 Jan 30 2019 mdadm-waitidle
-rwxr-xr-x 1 root root 2503 Dec 12 2018 open-iscsi
-rwxr-xr-x 1 root root 1846 Apr 5 2019 open-vm-tools
-rwxr-xr-x 1 root root 1366 Apr 4 2019 plymouth
-rwxr-xr-x 1 root root 752 Apr 4 2019 plymouth-log
-rwxr-xr-x 1 root root 1191 Jan 17 2018 procps
-rwxr-xr-x 1 root root 4355 Dec 13 2017 rsync
-rwxr-xr-x 1 root root 2864 Jan 14 2018 rsyslog
-rwxr-xr-x 1 root root 1222 May 21 2017 screen-cleanup
-rwxr-xr-x 1 root root 3837 Jan 25 2018 ssh
-rwxr-xr-x 1 root root 5974 Apr 20 2018 udev
-rwxr-xr-x 1 root root 2083 Aug 15 2017 ufw
-rwxr-xr-x 1 root root 1391 Apr 29 2019 unattended-upgrades
-rwxr-xr-x 1 root root 1306 Aug 22 2019 uuidd
-rwxr-xr-x 1 root root 2757 Jan 20 2017 x11-common
[00;31m[-] /etc/init/ config file permissions:[00m
total 16
drwxr-xr-x 2 root root 4096 Jul 6 18:29 .
drwxr-xr-x 100 root root 4096 Aug 13 13:06 ..
-rw-r--r-- 1 root root 344 Jun 11 20:39 amazon-cloudwatch-agent.conf
-rw-r--r-- 1 root root 474 Jun 11 20:39 cwagent-otel-collector.conf
[00;31m[-] /lib/systemd/* config file permissions:[00m
/lib/systemd/:
total 7.3M
drwxr-xr-x 22 root root 36K Aug 13 13:06 system
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 network
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 system-generators
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 system-preset
-rw-r--r-- 1 root root 2.3M Jul 21 18:51 libsystemd-shared-237.so
-rw-r--r-- 1 root root 699 Jul 21 18:51 resolv.conf
-rwxr-xr-x 1 root root 1.3K Jul 21 18:51 set-cpufreq
-rwxr-xr-x 1 root root 1.6M Jul 21 18:51 systemd
-rwxr-xr-x 1 root root 6.0K Jul 21 18:51 systemd-ac-power
-rwxr-xr-x 1 root root 18K Jul 21 18:51 systemd-backlight
-rwxr-xr-x 1 root root 11K Jul 21 18:51 systemd-binfmt
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-cgroups-agent
-rwxr-xr-x 1 root root 27K Jul 21 18:51 systemd-cryptsetup
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-dissect
-rwxr-xr-x 1 root root 18K Jul 21 18:51 systemd-fsck
-rwxr-xr-x 1 root root 23K Jul 21 18:51 systemd-fsckd
-rwxr-xr-x 1 root root 19K Jul 21 18:51 systemd-growfs
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-hibernate-resume
-rwxr-xr-x 1 root root 23K Jul 21 18:51 systemd-hostnamed
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-initctl
-rwxr-xr-x 1 root root 127K Jul 21 18:51 systemd-journald
-rwxr-xr-x 1 root root 35K Jul 21 18:51 systemd-localed
-rwxr-xr-x 1 root root 215K Jul 21 18:51 systemd-logind
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-makefs
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-modules-load
-rwxr-xr-x 1 root root 1.6M Jul 21 18:51 systemd-networkd
-rwxr-xr-x 1 root root 19K Jul 21 18:51 systemd-networkd-wait-online
-rwxr-xr-x 1 root root 11K Jul 21 18:51 systemd-quotacheck
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-random-seed
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-remount-fs
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-reply-password
-rwxr-xr-x 1 root root 375K Jul 21 18:51 systemd-resolved
-rwxr-xr-x 1 root root 19K Jul 21 18:51 systemd-rfkill
-rwxr-xr-x 1 root root 43K Jul 21 18:51 systemd-shutdown
-rwxr-xr-x 1 root root 19K Jul 21 18:51 systemd-sleep
-rwxr-xr-x 1 root root 23K Jul 21 18:51 systemd-socket-proxyd
-rwxr-xr-x 1 root root 11K Jul 21 18:51 systemd-sulogin-shell
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-sysctl
-rwxr-xr-x 1 root root 27K Jul 21 18:51 systemd-timedated
-rwxr-xr-x 1 root root 39K Jul 21 18:51 systemd-timesyncd
-rwxr-xr-x 1 root root 571K Jul 21 18:51 systemd-udevd
-rwxr-xr-x 1 root root 15K Jul 21 18:51 systemd-update-utmp
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-user-sessions
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-veritysetup
-rwxr-xr-x 1 root root 10K Jul 21 18:51 systemd-volatile-root
drwxr-xr-x 2 root root 4.0K Jun 21 19:29 system-sleep
drwxr-xr-x 2 root root 4.0K Jun 21 19:29 system-shutdown
-rwxr-xr-x 1 root root 1.3K May 27 15:18 systemd-sysv-install
/lib/systemd/system:
total 1.1M
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 getty.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 graphical.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 local-fs.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 multi-user.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 rescue.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 sockets.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 sysinit.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 timers.target.wants
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 rc-local.service.d
drwxr-xr-x 2 root root 4.0K Aug 13 13:06 user@.service.d
lrwxrwxrwx 1 root root 14 Jul 21 18:51 autovt@.service -> getty@.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 bootlogd.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 bootlogs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 bootmisc.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 checkfs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 checkroot-bootclean.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 checkroot.service -> /dev/null
-rw-r--r-- 1 root root 1.1K Jul 21 18:51 console-getty.service
-rw-r--r-- 1 root root 1.3K Jul 21 18:51 container-getty@.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 cryptdisks-early.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 cryptdisks.service -> /dev/null
lrwxrwxrwx 1 root root 13 Jul 21 18:51 ctrl-alt-del.target -> reboot.target
lrwxrwxrwx 1 root root 25 Jul 21 18:51 dbus-org.freedesktop.hostname1.service -> systemd-hostnamed.service
lrwxrwxrwx 1 root root 23 Jul 21 18:51 dbus-org.freedesktop.locale1.service -> systemd-localed.service
lrwxrwxrwx 1 root root 22 Jul 21 18:51 dbus-org.freedesktop.login1.service -> systemd-logind.service
lrwxrwxrwx 1 root root 25 Jul 21 18:51 dbus-org.freedesktop.timedate1.service -> systemd-timedated.service
-rw-r--r-- 1 root root 1.1K Jul 21 18:51 debug-shell.service
lrwxrwxrwx 1 root root 16 Jul 21 18:51 default.target -> graphical.target
-rw-r--r-- 1 root root 797 Jul 21 18:51 emergency.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 fuse.service -> /dev/null
-rw-r--r-- 1 root root 2.0K Jul 21 18:51 getty@.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 halt.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 hostname.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 hwclock.service -> /dev/null
-rw-r--r-- 1 root root 670 Jul 21 18:51 initrd-cleanup.service
-rw-r--r-- 1 root root 830 Jul 21 18:51 initrd-parse-etc.service
-rw-r--r-- 1 root root 589 Jul 21 18:51 initrd-switch-root.service
-rw-r--r-- 1 root root 704 Jul 21 18:51 initrd-udevadm-cleanup-db.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 killprocs.service -> /dev/null
-rw-r--r-- 1 root root 717 Jul 21 18:51 kmod-static-nodes.service
lrwxrwxrwx 1 root root 28 Jul 21 18:51 kmod.service -> systemd-modules-load.service
lrwxrwxrwx 1 root root 28 Jul 21 18:51 module-init-tools.service -> systemd-modules-load.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 motd.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountall-bootclean.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountall.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountdevsubfs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountkernfs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountnfs-bootclean.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 mountnfs.service -> /dev/null
lrwxrwxrwx 1 root root 22 Jul 21 18:51 procps.service -> systemd-sysctl.service
-rw-r--r-- 1 root root 609 Jul 21 18:51 quotaon.service
-rw-r--r-- 1 root root 716 Jul 21 18:51 rc-local.service
lrwxrwxrwx 1 root root 16 Jul 21 18:51 rc.local.service -> rc-local.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 rc.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 rcS.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 reboot.service -> /dev/null
-rw-r--r-- 1 root root 788 Jul 21 18:51 rescue.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 rmnologin.service -> /dev/null
lrwxrwxrwx 1 root root 15 Jul 21 18:51 runlevel0.target -> poweroff.target
lrwxrwxrwx 1 root root 13 Jul 21 18:51 runlevel1.target -> rescue.target
lrwxrwxrwx 1 root root 17 Jul 21 18:51 runlevel2.target -> multi-user.target
lrwxrwxrwx 1 root root 17 Jul 21 18:51 runlevel3.target -> multi-user.target
lrwxrwxrwx 1 root root 17 Jul 21 18:51 runlevel4.target -> multi-user.target
lrwxrwxrwx 1 root root 16 Jul 21 18:51 runlevel5.target -> graphical.target
lrwxrwxrwx 1 root root 13 Jul 21 18:51 runlevel6.target -> reboot.target
lrwxrwxrwx 1 root root 9 Jul 21 18:51 sendsigs.service -> /dev/null
-rw-r--r-- 1 root root 1.5K Jul 21 18:51 serial-getty@.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 single.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 stop-bootlogd-single.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 stop-bootlogd.service -> /dev/null
-rw-r--r-- 1 root root 554 Jul 21 18:51 suspend-then-hibernate.target
-rw-r--r-- 1 root root 1.4K Jul 21 18:51 system-update-cleanup.service
-rw-r--r-- 1 root root 724 Jul 21 18:51 systemd-ask-password-console.service
-rw-r--r-- 1 root root 752 Jul 21 18:51 systemd-ask-password-wall.service
-rw-r--r-- 1 root root 752 Jul 21 18:51 systemd-backlight@.service
-rw-r--r-- 1 root root 999 Jul 21 18:51 systemd-binfmt.service
-rw-r--r-- 1 root root 537 Jul 21 18:51 systemd-exit.service
-rw-r--r-- 1 root root 714 Jul 21 18:51 systemd-fsck-root.service
-rw-r--r-- 1 root root 715 Jul 21 18:51 systemd-fsck@.service
-rw-r--r-- 1 root root 551 Jul 21 18:51 systemd-fsckd.service
-rw-r--r-- 1 root root 540 Jul 21 18:51 systemd-fsckd.socket
-rw-r--r-- 1 root root 584 Jul 21 18:51 systemd-halt.service
-rw-r--r-- 1 root root 671 Jul 21 18:51 systemd-hibernate-resume@.service
-rw-r--r-- 1 root root 541 Jul 21 18:51 systemd-hibernate.service
-rw-r--r-- 1 root root 1.2K Jul 21 18:51 systemd-hostnamed.service
-rw-r--r-- 1 root root 818 Jul 21 18:51 systemd-hwdb-update.service
-rw-r--r-- 1 root root 559 Jul 21 18:51 systemd-hybrid-sleep.service
-rw-r--r-- 1 root root 551 Jul 21 18:51 systemd-initctl.service
-rw-r--r-- 1 root root 771 Jul 21 18:51 systemd-journal-flush.service
-rw-r--r-- 1 root root 686 Jul 21 18:51 systemd-journald-audit.socket
-rw-r--r-- 1 root root 1.6K Jul 21 18:51 systemd-journald.service
-rw-r--r-- 1 root root 597 Jul 21 18:51 systemd-kexec.service
-rw-r--r-- 1 root root 1.2K Jul 21 18:51 systemd-localed.service
-rw-r--r-- 1 root root 1.5K Jul 21 18:51 systemd-logind.service
-rw-r--r-- 1 root root 733 Jul 21 18:51 systemd-machine-id-commit.service
-rw-r--r-- 1 root root 1007 Jul 21 18:51 systemd-modules-load.service
-rw-r--r-- 1 root root 740 Jul 21 18:51 systemd-networkd-wait-online.service
-rw-r--r-- 1 root root 1.9K Jul 21 18:51 systemd-networkd.service
-rw-r--r-- 1 root root 593 Jul 21 18:51 systemd-poweroff.service
-rw-r--r-- 1 root root 655 Jul 21 18:51 systemd-quotacheck.service
-rw-r--r-- 1 root root 792 Jul 21 18:51 systemd-random-seed.service
-rw-r--r-- 1 root root 588 Jul 21 18:51 systemd-reboot.service
-rw-r--r-- 1 root root 833 Jul 21 18:51 systemd-remount-fs.service
-rw-r--r-- 1 root root 1.7K Jul 21 18:51 systemd-resolved.service
-rw-r--r-- 1 root root 724 Jul 21 18:51 systemd-rfkill.service
-rw-r--r-- 1 root root 573 Jul 21 18:51 systemd-suspend-then-hibernate.service
-rw-r--r-- 1 root root 537 Jul 21 18:51 systemd-suspend.service
-rw-r--r-- 1 root root 693 Jul 21 18:51 systemd-sysctl.service
-rw-r--r-- 1 root root 1.1K Jul 21 18:51 systemd-timedated.service
-rw-r--r-- 1 root root 1.4K Jul 21 18:51 systemd-timesyncd.service
-rw-r--r-- 1 root root 659 Jul 21 18:51 systemd-tmpfiles-clean.service
-rw-r--r-- 1 root root 764 Jul 21 18:51 systemd-tmpfiles-setup-dev.service
-rw-r--r-- 1 root root 744 Jul 21 18:51 systemd-tmpfiles-setup.service
-rw-r--r-- 1 root root 863 Jul 21 18:51 systemd-udev-settle.service
-rw-r--r-- 1 root root 755 Jul 21 18:51 systemd-udev-trigger.service
-rw-r--r-- 1 root root 1006 Jul 21 18:51 systemd-udevd.service
-rw-r--r-- 1 root root 797 Jul 21 18:51 systemd-update-utmp-runlevel.service
-rw-r--r-- 1 root root 794 Jul 21 18:51 systemd-update-utmp.service
-rw-r--r-- 1 root root 628 Jul 21 18:51 systemd-user-sessions.service
-rw-r--r-- 1 root root 690 Jul 21 18:51 systemd-volatile-root.service
lrwxrwxrwx 1 root root 21 Jul 21 18:51 udev.service -> systemd-udevd.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 umountfs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 umountnfs.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jul 21 18:51 umountroot.service -> /dev/null
lrwxrwxrwx 1 root root 27 Jul 21 18:51 urandom.service -> systemd-random-seed.service
-rw-r--r-- 1 root root 593 Jul 21 18:51 user@.service
lrwxrwxrwx 1 root root 9 Jul 21 18:51 x11-common.service -> /dev/null
-rw-r--r-- 1 root root 238 Jun 15 14:12 apt-daily-upgrade.service
-rw-r--r-- 1 root root 184 Jun 15 14:12 apt-daily-upgrade.timer
-rw-r--r-- 1 root root 326 Jun 15 14:12 apt-daily.service
-rw-r--r-- 1 root root 156 Jun 15 14:12 apt-daily.timer
-rw-r--r-- 1 root root 278 May 27 18:50 ua-messaging.service
-rw-r--r-- 1 root root 177 May 27 18:50 ua-messaging.timer
-rw-r--r-- 1 root root 323 May 27 18:50 ua-reboot-cmds.service
-rw-r--r-- 1 root root 342 May 27 15:16 getty-static.service
-rw-r--r-- 1 root root 362 May 27 15:16 ondemand.service
-rw-r--r-- 1 root root 418 May 11 17:24 cloud-config.service
-rw-r--r-- 1 root root 482 May 11 17:24 cloud-final.service
-rw-r--r-- 1 root root 608 May 11 17:24 cloud-init-local.service
-rw-r--r-- 1 root root 665 May 11 17:24 cloud-init.service
-rw-r--r-- 1 root root 536 May 11 16:34 cloud-config.target
-rw-r--r-- 1 root root 256 May 11 16:34 cloud-init.target
-rw-r--r-- 1 root root 880 Mar 26 15:49 snapd.apparmor.service
-rw-r--r-- 1 root root 432 Mar 26 15:49 snapd.autoimport.service
-rw-r--r-- 1 root root 369 Mar 26 15:49 snapd.core-fixup.service
-rw-r--r-- 1 root root 151 Mar 26 15:49 snapd.failure.service
-rw-r--r-- 1 root root 524 Mar 26 15:49 snapd.recovery-chooser-trigger.service
-rw-r--r-- 1 root root 322 Mar 26 15:49 snapd.seeded.service
-rw-r--r-- 1 root root 475 Mar 26 15:49 snapd.service
-rw-r--r-- 1 root root 464 Mar 26 15:49 snapd.snap-repair.service
-rw-r--r-- 1 root root 373 Mar 26 15:49 snapd.snap-repair.timer
-rw-r--r-- 1 root root 281 Mar 26 15:49 snapd.socket
-rw-r--r-- 1 root root 608 Mar 26 15:49 snapd.system-shutdown.service
-rw-r--r-- 1 root root 358 Feb 9 2021 pollinate.service
lrwxrwxrwx 1 root root 9 Jan 19 2021 sudo.service -> /dev/null
-rw-r--r-- 1 root root 308 Nov 3 2020 hibinit-agent.service
-rw-r--r-- 1 root root 741 Nov 2 2020 accounts-daemon.service
-rw-r--r-- 1 root root 127 Sep 16 2020 fstrim.service
-rw-r--r-- 1 root root 205 Sep 16 2020 fstrim.timer
-rw-r--r-- 1 root root 189 Sep 16 2020 uuidd.service
-rw-r--r-- 1 root root 126 Sep 16 2020 uuidd.socket
-rw-r--r-- 1 root root 173 Jun 15 2020 motd-news.service
-rw-r--r-- 1 root root 161 Jun 15 2020 motd-news.timer
-rw-r--r-- 1 root root 505 Jun 11 2020 dbus.service
-rw-r--r-- 1 root root 106 Jun 11 2020 dbus.socket
-rw-r--r-- 1 root root 463 May 11 2020 iscsid.service
-rw-r--r-- 1 root root 175 May 11 2020 iscsid.socket
-rw-r--r-- 1 root root 987 May 11 2020 open-iscsi.service
-rw-r--r-- 1 root root 311 Mar 31 2020 lxcfs.service
-rw-r--r-- 1 root root 498 Mar 25 2020 open-vm-tools.service
-rw-r--r-- 1 root root 372 Feb 17 2020 unattended-upgrades.service
-rw-r--r-- 1 root root 383 Jan 23 2020 blk-availability.service
-rw-r--r-- 1 root root 341 Jan 23 2020 dm-event.service
-rw-r--r-- 1 root root 248 Jan 23 2020 dm-event.socket
-rw-r--r-- 1 root root 345 Jan 23 2020 lvm2-lvmetad.service
-rw-r--r-- 1 root root 215 Jan 23 2020 lvm2-lvmetad.socket
-rw-r--r-- 1 root root 300 Jan 23 2020 lvm2-lvmpolld.service
-rw-r--r-- 1 root root 213 Jan 23 2020 lvm2-lvmpolld.socket
-rw-r--r-- 1 root root 693 Jan 23 2020 lvm2-monitor.service
-rw-r--r-- 1 root root 403 Jan 23 2020 lvm2-pvscan@.service
lrwxrwxrwx 1 root root 9 Jan 23 2020 lvm2.service -> /dev/null
-rw-r--r-- 1 root root 481 Jan 14 2020 mdadm-grow-continue@.service
-rw-r--r-- 1 root root 210 Jan 14 2020 mdadm-last-resort@.service
-rw-r--r-- 1 root root 179 Jan 14 2020 mdadm-last-resort@.timer
-rw-r--r-- 1 root root 670 Jan 14 2020 mdadm-shutdown.service
lrwxrwxrwx 1 root root 9 Jan 14 2020 mdadm-waitidle.service -> /dev/null
lrwxrwxrwx 1 root root 9 Jan 14 2020 mdadm.service -> /dev/null
-rw-r--r-- 1 root root 1.1K Jan 14 2020 mdmon@.service
-rw-r--r-- 1 root root 388 Jan 14 2020 mdmonitor.service
-rw-r--r-- 1 root root 408 Dec 9 2019 vgauth.service
-rw-r--r-- 1 root root 212 Nov 11 2019 apport-autoreport.path
-rw-r--r-- 1 root root 242 Nov 11 2019 apport-autoreport.service
-rw-r--r-- 1 root root 246 Nov 11 2019 apport-forward.socket
-rw-r--r-- 1 root root 142 Nov 11 2019 apport-forward@.service
lrwxrwxrwx 1 root root 9 Oct 2 2019 screen-cleanup.service -> /dev/null
drwxr-xr-x 2 root root 4.0K Oct 2 2019 halt.target.wants
drwxr-xr-x 2 root root 4.0K Oct 2 2019 initrd-switch-root.target.wants
drwxr-xr-x 2 root root 4.0K Oct 2 2019 kexec.target.wants
drwxr-xr-x 2 root root 4.0K Oct 2 2019 poweroff.target.wants
drwxr-xr-x 2 root root 4.0K Oct 2 2019 reboot.target.wants
-rw-r--r-- 1 root root 312 Apr 23 2019 console-setup.service
-rw-r--r-- 1 root root 287 Apr 23 2019 keyboard-setup.service
-rw-r--r-- 1 root root 330 Apr 23 2019 setvtrgb.service
-rw-r--r-- 1 root root 250 Apr 9 2019 ureadahead-stop.service
-rw-r--r-- 1 root root 242 Apr 9 2019 ureadahead-stop.timer
-rw-r--r-- 1 root root 404 Apr 9 2019 ureadahead.service
-rw-r--r-- 1 root root 412 Apr 4 2019 plymouth-halt.service
-rw-r--r-- 1 root root 426 Apr 4 2019 plymouth-kexec.service
lrwxrwxrwx 1 root root 27 Apr 4 2019 plymouth-log.service -> plymouth-read-write.service
-rw-r--r-- 1 root root 421 Apr 4 2019 plymouth-poweroff.service
-rw-r--r-- 1 root root 200 Apr 4 2019 plymouth-quit-wait.service
-rw-r--r-- 1 root root 194 Apr 4 2019 plymouth-quit.service
-rw-r--r-- 1 root root 244 Apr 4 2019 plymouth-read-write.service
-rw-r--r-- 1 root root 416 Apr 4 2019 plymouth-reboot.service
-rw-r--r-- 1 root root 532 Apr 4 2019 plymouth-start.service
-rw-r--r-- 1 root root 291 Apr 4 2019 plymouth-switch-root.service
lrwxrwxrwx 1 root root 21 Apr 4 2019 plymouth.service -> plymouth-quit.service
-rw-r--r-- 1 root root 490 Apr 4 2019 systemd-ask-password-plymouth.path
-rw-r--r-- 1 root root 467 Apr 4 2019 systemd-ask-password-plymouth.service
-rw-r--r-- 1 root root 368 Jan 9 2019 irqbalance.service
-rw-r--r-- 1 root root 605 Nov 23 2018 lxd.service
-rw-r--r-- 1 root root 320 Nov 23 2018 lxd-containers.service
-rw-r--r-- 1 root root 197 Nov 23 2018 lxd.socket
-rw-r--r-- 1 root root 618 Oct 15 2018 friendly-recovery.service
-rw-r--r-- 1 root root 172 Oct 15 2018 friendly-recovery.target
-rw-r--r-- 1 root root 258 Oct 15 2018 networkd-dispatcher.service
-rw-r--r-- 1 root root 456 Jun 28 2018 ebtables.service
-rw-r--r-- 1 root root 290 Apr 24 2018 rsyslog.service
drwxr-xr-x 2 root root 4.0K Apr 20 2018 runlevel1.target.wants
drwxr-xr-x 2 root root 4.0K Apr 20 2018 runlevel2.target.wants
drwxr-xr-x 2 root root 4.0K Apr 20 2018 runlevel3.target.wants
drwxr-xr-x 2 root root 4.0K Apr 20 2018 runlevel4.target.wants
drwxr-xr-x 2 root root 4.0K Apr 20 2018 runlevel5.target.wants
-rw-r--r-- 1 root root 175 Mar 27 2018 polkit.service
-rw-r--r-- 1 root root 544 Mar 22 2018 apparmor.service
-rw-r--r-- 1 root root 169 Feb 20 2018 atd.service
-rw-r--r-- 1 root root 919 Jan 28 2018 basic.target
-rw-r--r-- 1 root root 419 Jan 28 2018 bluetooth.target
-rw-r--r-- 1 root root 465 Jan 28 2018 cryptsetup-pre.target
-rw-r--r-- 1 root root 412 Jan 28 2018 cryptsetup.target
-rw-r--r-- 1 root root 750 Jan 28 2018 dev-hugepages.mount
-rw-r--r-- 1 root root 665 Jan 28 2018 dev-mqueue.mount
-rw-r--r-- 1 root root 471 Jan 28 2018 emergency.target
-rw-r--r-- 1 root root 541 Jan 28 2018 exit.target
-rw-r--r-- 1 root root 480 Jan 28 2018 final.target
-rw-r--r-- 1 root root 506 Jan 28 2018 getty-pre.target
-rw-r--r-- 1 root root 500 Jan 28 2018 getty.target
-rw-r--r-- 1 root root 598 Jan 28 2018 graphical.target
-rw-r--r-- 1 root root 527 Jan 28 2018 halt.target
-rw-r--r-- 1 root root 509 Jan 28 2018 hibernate.target
-rw-r--r-- 1 root root 530 Jan 28 2018 hybrid-sleep.target
-rw-r--r-- 1 root root 593 Jan 28 2018 initrd-fs.target
-rw-r--r-- 1 root root 561 Jan 28 2018 initrd-root-device.target
-rw-r--r-- 1 root root 566 Jan 28 2018 initrd-root-fs.target
-rw-r--r-- 1 root root 754 Jan 28 2018 initrd-switch-root.target
-rw-r--r-- 1 root root 763 Jan 28 2018 initrd.target
-rw-r--r-- 1 root root 541 Jan 28 2018 kexec.target
-rw-r--r-- 1 root root 435 Jan 28 2018 local-fs-pre.target
-rw-r--r-- 1 root root 547 Jan 28 2018 local-fs.target
-rw-r--r-- 1 root root 445 Jan 28 2018 machine.slice
-rw-r--r-- 1 root root 532 Jan 28 2018 multi-user.target
-rw-r--r-- 1 root root 505 Jan 28 2018 network-online.target
-rw-r--r-- 1 root root 502 Jan 28 2018 network-pre.target
-rw-r--r-- 1 root root 521 Jan 28 2018 network.target
-rw-r--r-- 1 root root 554 Jan 28 2018 nss-lookup.target
-rw-r--r-- 1 root root 513 Jan 28 2018 nss-user-lookup.target
-rw-r--r-- 1 root root 394 Jan 28 2018 paths.target
-rw-r--r-- 1 root root 592 Jan 28 2018 poweroff.target
-rw-r--r-- 1 root root 417 Jan 28 2018 printer.target
-rw-r--r-- 1 root root 745 Jan 28 2018 proc-sys-fs-binfmt_misc.automount
-rw-r--r-- 1 root root 655 Jan 28 2018 proc-sys-fs-binfmt_misc.mount
-rw-r--r-- 1 root root 583 Jan 28 2018 reboot.target
-rw-r--r-- 1 root root 549 Jan 28 2018 remote-cryptsetup.target
-rw-r--r-- 1 root root 436 Jan 28 2018 remote-fs-pre.target
-rw-r--r-- 1 root root 522 Jan 28 2018 remote-fs.target
-rw-r--r-- 1 root root 492 Jan 28 2018 rescue.target
-rw-r--r-- 1 root root 540 Jan 28 2018 rpcbind.target
-rw-r--r-- 1 root root 442 Jan 28 2018 shutdown.target
-rw-r--r-- 1 root root 402 Jan 28 2018 sigpwr.target
-rw-r--r-- 1 root root 460 Jan 28 2018 sleep.target
-rw-r--r-- 1 root root 449 Jan 28 2018 slices.target
-rw-r--r-- 1 root root 420 Jan 28 2018 smartcard.target
-rw-r--r-- 1 root root 396 Jan 28 2018 sockets.target
-rw-r--r-- 1 root root 420 Jan 28 2018 sound.target
-rw-r--r-- 1 root root 503 Jan 28 2018 suspend.target
-rw-r--r-- 1 root root 393 Jan 28 2018 swap.target
-rw-r--r-- 1 root root 795 Jan 28 2018 sys-fs-fuse-connections.mount
-rw-r--r-- 1 root root 767 Jan 28 2018 sys-kernel-config.mount
-rw-r--r-- 1 root root 710 Jan 28 2018 sys-kernel-debug.mount
-rw-r--r-- 1 root root 558 Jan 28 2018 sysinit.target
-rw-r--r-- 1 root root 1.4K Jan 28 2018 syslog.socket
-rw-r--r-- 1 root root 592 Jan 28 2018 system-update.target
-rw-r--r-- 1 root root 445 Jan 28 2018 system.slice
-rw-r--r-- 1 root root 704 Jan 28 2018 systemd-ask-password-console.path
-rw-r--r-- 1 root root 632 Jan 28 2018 systemd-ask-password-wall.path
-rw-r--r-- 1 root root 564 Jan 28 2018 systemd-initctl.socket
-rw-r--r-- 1 root root 1.2K Jan 28 2018 systemd-journald-dev-log.socket
-rw-r--r-- 1 root root 882 Jan 28 2018 systemd-journald.socket
-rw-r--r-- 1 root root 631 Jan 28 2018 systemd-networkd.socket
-rw-r--r-- 1 root root 657 Jan 28 2018 systemd-rfkill.socket
-rw-r--r-- 1 root root 490 Jan 28 2018 systemd-tmpfiles-clean.timer
-rw-r--r-- 1 root root 635 Jan 28 2018 systemd-udevd-control.socket
-rw-r--r-- 1 root root 610 Jan 28 2018 systemd-udevd-kernel.socket
-rw-r--r-- 1 root root 435 Jan 28 2018 time-sync.target
-rw-r--r-- 1 root root 445 Jan 28 2018 timers.target
-rw-r--r-- 1 root root 457 Jan 28 2018 umount.target
-rw-r--r-- 1 root root 432 Jan 28 2018 user.slice
-rw-r--r-- 1 root root 493 Jan 25 2018 ssh.service
-rw-r--r-- 1 root root 244 Jan 25 2018 ssh@.service
-rw-r--r-- 1 root root 216 Jan 16 2018 ssh.socket
-rw-r--r-- 1 root root 251 Nov 16 2017 cron.service
-rw-r--r-- 1 root root 266 Aug 15 2017 ufw.service
-rw-r--r-- 1 root root 115 Apr 22 2017 acpid.path
-rw-r--r-- 1 root root 234 Apr 22 2017 acpid.service
-rw-r--r-- 1 root root 115 Apr 22 2017 acpid.socket
-rw-r--r-- 1 root root 188 Feb 24 2014 rsync.service
/lib/systemd/system/getty.target.wants:
total 0
lrwxrwxrwx 1 root root 23 Jul 21 18:51 getty-static.service -> ../getty-static.service
/lib/systemd/system/graphical.target.wants:
total 0
lrwxrwxrwx 1 root root 39 Jul 21 18:51 systemd-update-utmp-runlevel.service -> ../systemd-update-utmp-runlevel.service
/lib/systemd/system/local-fs.target.wants:
total 0
lrwxrwxrwx 1 root root 29 Jul 21 18:51 systemd-remount-fs.service -> ../systemd-remount-fs.service