-
Notifications
You must be signed in to change notification settings - Fork 12
/
Bash Sample Report - kali-2024-02-21_17-16-28_UTC.html
4438 lines (4413 loc) · 361 KB
/
Bash Sample Report - kali-2024-02-21_17-16-28_UTC.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Linux Incident Response Diagnosis Report</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="mt-3">Linux - IR Computer Diagnosis Report</h1>
<form action="/submit-incident" method="post">
<fieldset class="form-group">
<legend>Analyst Notes</legend>
<textarea class="form-control" rows="5"></textarea>
</fieldset>
<fieldset class="form-group">
<legend>Meta Information</legend>
<div class="form-group">
<label for="reportGenerationDate" class="col-form-label">Report Generation Date (UTC):</label>
<input type="text" id="reportGenerationDate" name="reportGenerationDate" class="form-control"
value="2024-02-21 17:16:28 UTC" disabled>
</div>
<div class="form-group">
<label for="incidentHandlerName">Report Generated By:</label>
<input type="text" id="incidentHandlerName" name="incidentHandlerName" class="form-control">
</div>
</fieldset>
</form>
</div>
<div class="container mt-4">
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Network Interfaces and IP Addresses.</h5>
</div>
<div class="card-body">
<pre>
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.14 netmask 255.255.252.0 broadcast 192.168.3.255
inet6 fe80::926b:dc76:8478:54c prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:09:64:75 txqueuelen 1000 (Ethernet)
RX packets 26518 bytes 20309026 (19.3 MiB)
RX errors 0 dropped 978 overruns 0 frame 0
TX packets 7933 bytes 1157999 (1.1 MiB)
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 165 bytes 9954 (9.7 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 165 bytes 9954 (9.7 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
link/ether 00:0c:29:09:64:75 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.14/22 brd 192.168.3.255 scope global dynamic noprefixroute eth0
valid_lft 81498sec preferred_lft 81498sec
inet6 fe80::926b:dc76:8478:54c/64 scope link noprefixroute
valid_lft forever preferred_lft forever
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">ARP Table.</h5>
</div>
<div class="card-body">
<pre>
? (192.168.1.1) at bc:62:d2:45:87:c8 [ether] on eth0
? (192.168.1.111) at 00:0c:29:43:7f:db [ether] on eth0
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display the system's hostname.</h5>
</div>
<div class="card-body">
<pre>
kali
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display system information including the kernel version.</h5>
</div>
<div class="card-body">
<pre>
Linux kali 6.5.0-kali3-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.5.6-1kali1 (2023-10-09) x86_64 GNU/Linux
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display disk usage.</h5>
</div>
<div class="card-body">
<pre>
Filesystem Size Used Avail Use% Mounted on
udev 938M 0 938M 0% /dev
tmpfs 196M 1.3M 195M 1% /run
/dev/sda1 79G 15G 61G 20% /
tmpfs 979M 0 979M 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 196M 148K 196M 1% /run/user/1000
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display memory usage.</h5>
</div>
<div class="card-body">
<pre>
total used free shared buff/cache available
Mem: 1956 698 633 4 816 1258
Swap: 1023 198 825
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display running processes.</h5>
</div>
<div class="card-body">
<pre>
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.2 0.6 21320 12620 ? Ss 10:46 0:12 /sbin/init splash
root 2 0.0 0.0 0 0 ? S 10:46 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? I< 10:46 0:00 [rcu_gp]
root 4 0.0 0.0 0 0 ? I< 10:46 0:00 [rcu_par_gp]
root 5 0.0 0.0 0 0 ? I< 10:46 0:00 [slub_flushwq]
root 6 0.0 0.0 0 0 ? I< 10:46 0:00 [netns]
root 11 0.0 0.0 0 0 ? I< 10:46 0:00 [mm_percpu_wq]
root 12 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_kthread]
root 13 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_rude_kthread]
root 14 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_trace_kthread]
root 15 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/0]
root 16 0.0 0.0 0 0 ? I 10:46 0:04 [rcu_preempt]
root 17 0.0 0.0 0 0 ? S 10:46 0:00 [migration/0]
root 18 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/0]
root 19 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/0]
root 20 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/1]
root 21 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/1]
root 22 0.0 0.0 0 0 ? S 10:46 0:00 [migration/1]
root 23 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/1]
root 26 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/2]
root 27 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/2]
root 28 0.0 0.0 0 0 ? S 10:46 0:00 [migration/2]
root 29 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/2]
root 32 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/3]
root 33 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/3]
root 34 0.0 0.0 0 0 ? S 10:46 0:00 [migration/3]
root 35 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/3]
root 37 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/3:0H-kblockd]
root 42 0.0 0.0 0 0 ? S 10:46 0:00 [kdevtmpfs]
root 43 0.0 0.0 0 0 ? I< 10:46 0:00 [inet_frag_wq]
root 44 0.0 0.0 0 0 ? S 10:46 0:00 [kauditd]
root 46 0.0 0.0 0 0 ? S 10:46 0:00 [khungtaskd]
root 47 0.0 0.0 0 0 ? S 10:46 0:00 [oom_reaper]
root 48 0.0 0.0 0 0 ? I< 10:46 0:00 [writeback]
root 49 0.0 0.0 0 0 ? S 10:46 0:04 [kcompactd0]
root 50 0.0 0.0 0 0 ? SN 10:46 0:00 [ksmd]
root 51 0.0 0.0 0 0 ? SN 10:46 0:00 [khugepaged]
root 52 0.0 0.0 0 0 ? I< 10:46 0:00 [kintegrityd]
root 53 0.0 0.0 0 0 ? I< 10:46 0:00 [kblockd]
root 54 0.0 0.0 0 0 ? I< 10:46 0:00 [blkcg_punt_bio]
root 56 0.0 0.0 0 0 ? I< 10:46 0:00 [tpm_dev_wq]
root 57 0.0 0.0 0 0 ? I< 10:46 0:00 [edac-poller]
root 58 0.0 0.0 0 0 ? I< 10:46 0:00 [devfreq_wq]
root 59 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/0:1H-kblockd]
root 60 0.1 0.0 0 0 ? S 10:46 0:06 [kswapd0]
root 68 0.0 0.0 0 0 ? I< 10:46 0:00 [kthrotld]
root 70 0.0 0.0 0 0 ? S 10:46 0:00 [irq/24-pciehp]
root 71 0.0 0.0 0 0 ? S 10:46 0:00 [irq/25-pciehp]
root 72 0.0 0.0 0 0 ? S 10:46 0:00 [irq/26-pciehp]
root 73 0.0 0.0 0 0 ? S 10:46 0:00 [irq/27-pciehp]
root 74 0.0 0.0 0 0 ? S 10:46 0:00 [irq/28-pciehp]
root 75 0.0 0.0 0 0 ? S 10:46 0:00 [irq/29-pciehp]
root 76 0.0 0.0 0 0 ? S 10:46 0:00 [irq/30-pciehp]
root 77 0.0 0.0 0 0 ? S 10:46 0:00 [irq/31-pciehp]
root 78 0.0 0.0 0 0 ? S 10:46 0:00 [irq/32-pciehp]
root 79 0.0 0.0 0 0 ? S 10:46 0:00 [irq/33-pciehp]
root 80 0.0 0.0 0 0 ? S 10:46 0:00 [irq/34-pciehp]
root 81 0.0 0.0 0 0 ? S 10:46 0:00 [irq/35-pciehp]
root 82 0.0 0.0 0 0 ? S 10:46 0:00 [irq/36-pciehp]
root 83 0.0 0.0 0 0 ? S 10:46 0:00 [irq/37-pciehp]
root 84 0.0 0.0 0 0 ? S 10:46 0:00 [irq/38-pciehp]
root 85 0.0 0.0 0 0 ? S 10:46 0:00 [irq/39-pciehp]
root 86 0.0 0.0 0 0 ? S 10:46 0:00 [irq/40-pciehp]
root 87 0.0 0.0 0 0 ? S 10:46 0:00 [irq/41-pciehp]
root 88 0.0 0.0 0 0 ? S 10:46 0:00 [irq/42-pciehp]
root 89 0.0 0.0 0 0 ? S 10:46 0:00 [irq/43-pciehp]
root 90 0.0 0.0 0 0 ? S 10:46 0:00 [irq/44-pciehp]
root 91 0.0 0.0 0 0 ? S 10:46 0:00 [irq/45-pciehp]
root 92 0.0 0.0 0 0 ? S 10:46 0:00 [irq/46-pciehp]
root 93 0.0 0.0 0 0 ? S 10:46 0:00 [irq/47-pciehp]
root 94 0.0 0.0 0 0 ? S 10:46 0:00 [irq/48-pciehp]
root 95 0.0 0.0 0 0 ? S 10:46 0:00 [irq/49-pciehp]
root 96 0.0 0.0 0 0 ? S 10:46 0:00 [irq/50-pciehp]
root 97 0.0 0.0 0 0 ? S 10:46 0:00 [irq/51-pciehp]
root 98 0.0 0.0 0 0 ? S 10:46 0:00 [irq/52-pciehp]
root 99 0.0 0.0 0 0 ? S 10:46 0:00 [irq/53-pciehp]
root 100 0.0 0.0 0 0 ? S 10:46 0:00 [irq/54-pciehp]
root 101 0.0 0.0 0 0 ? S 10:46 0:00 [irq/55-pciehp]
root 102 0.0 0.0 0 0 ? I< 10:46 0:00 [acpi_thermal_pm]
root 103 0.0 0.0 0 0 ? I< 10:46 0:00 [mld]
root 104 0.0 0.0 0 0 ? I< 10:46 0:00 [ipv6_addrconf]
root 109 0.0 0.0 0 0 ? I< 10:46 0:00 [kstrp]
root 113 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/u65:0]
root 175 0.0 0.0 0 0 ? I< 10:46 0:01 [kworker/1:1H-kblockd]
root 178 0.0 0.0 0 0 ? I< 10:46 0:00 [cryptd]
root 179 0.0 0.0 0 0 ? I< 10:46 0:00 [ata_sff]
root 180 0.0 0.0 0 0 ? I< 10:46 0:00 [mpt_poll_0]
root 183 0.0 0.0 0 0 ? I< 10:46 0:00 [mpt/0]
root 186 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_0]
root 187 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_0]
root 188 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_1]
root 189 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_1]
root 193 0.0 0.0 0 0 ? S 10:46 0:00 [irq/16-vmwgfx]
root 194 0.0 0.0 0 0 ? I< 10:46 0:00 [ttm]
root 238 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_2]
root 239 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_2]
root 276 0.0 0.0 0 0 ? S 10:46 0:01 [jbd2/sda1-8]
root 277 0.0 0.0 0 0 ? I< 10:46 0:00 [ext4-rsv-conver]
root 334 0.0 0.7 50080 15372 ? Ss 10:46 0:00 /lib/systemd/systemd-journald
root 352 0.0 0.0 227028 1548 ? Ssl 10:46 0:00 vmware-vmblock-fuse /run/vmblock-fuse -o rw,subtype=vmware-vmblock,default_permissions,allow_other,dev,suid
root 363 0.0 0.3 28152 7828 ? Ss 10:46 0:00 /lib/systemd/systemd-udevd
root 416 0.0 0.0 0 0 ? S 10:46 0:00 [psimon]
root 498 0.0 0.1 8264 2108 ? Ss 10:46 0:00 /usr/sbin/haveged --Foreground --verbose=1
root 507 1.6 0.6 315084 12816 ? Ssl 10:46 1:27 /usr/bin/vmtoolsd
root 527 0.0 0.0 0 0 ? S 10:46 0:00 [irq/56-vmw_vmci]
root 528 0.0 0.0 0 0 ? S 10:46 0:00 [irq/57-vmw_vmci]
root 531 0.0 0.0 0 0 ? I< 10:46 0:00 [rpciod]
root 534 0.0 0.0 0 0 ? I< 10:46 0:00 [xprtiod]
root 792 0.0 0.4 310884 9336 ? Ssl 10:46 0:00 /usr/libexec/accounts-daemon
root 793 0.0 0.1 6636 2560 ? Ss 10:46 0:00 /usr/sbin/cron -f
message+ 794 0.0 0.2 10768 5504 ? Ss 10:46 0:04 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
polkitd 797 0.0 0.4 384128 9044 ? Ssl 10:46 0:01 /usr/lib/polkit-1/polkitd --no-debug
root 799 0.0 0.4 17588 8064 ? Ss 10:46 0:00 /lib/systemd/systemd-logind
root 805 0.0 1.0 333168 20692 ? Ssl 10:46 0:01 /usr/sbin/NetworkManager --no-daemon
root 819 0.0 0.5 392128 10272 ? Ssl 10:46 0:00 /usr/sbin/ModemManager
root 873 0.0 0.3 382324 7012 ? SLsl 10:46 0:00 /usr/sbin/lightdm
root 891 7.4 7.5 427564 150700 tty7 Rsl+ 10:46 6:43 /usr/lib/xorg/Xorg :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
root 893 0.0 0.0 5896 1664 tty1 Ss+ 10:46 0:00 /sbin/agetty -o -p -- \u --noclear - linux
root 920 0.0 0.0 0 0 ? S 10:46 0:00 [psimon]
rtkit 950 0.0 0.1 22804 3200 ? SNsl 10:46 0:00 /usr/libexec/rtkit-daemon
root 1025 0.0 0.3 236260 7584 ? Sl 10:46 0:00 lightdm --session-child 13 24
kali 1032 0.0 0.5 19820 11008 ? Ss 10:46 0:00 /lib/systemd/systemd --user
kali 1033 0.0 0.2 22148 4864 ? S 10:46 0:00 (sd-pam)
kali 1049 0.0 0.6 118724 12544 ? S<sl 10:46 0:00 /usr/bin/pipewire
kali 1050 0.0 0.2 95216 5376 ? Ssl 10:46 0:00 /usr/bin/pipewire -c filter-chain.conf
kali 1051 0.0 1.4 576544 29324 ? S<sl 10:46 0:00 /usr/bin/wireplumber
kali 1052 0.0 0.3 101116 7936 ? S<sl 10:46 0:00 /usr/bin/pipewire-pulse
kali 1053 0.0 0.2 9956 5632 ? Ss 10:46 0:01 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
kali 1055 0.0 0.4 314240 8140 ? SLsl 10:46 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/1000/keyring
kali 1077 0.0 1.2 341140 25236 ? Ssl 10:46 0:00 xfce4-session
kali 1128 0.0 0.0 7952 1140 ? Ss 10:46 0:00 /usr/bin/ssh-agent x-session-manager
kali 1139 0.0 0.3 385112 7628 ? Ssl 10:46 0:00 /usr/libexec/at-spi-bus-launcher
kali 1146 0.0 0.2 9388 4608 ? S 10:46 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/1000/at-spi/bus_0
kali 1158 0.0 0.3 238380 7512 ? Sl 10:46 0:01 /usr/libexec/at-spi2-registryd --use-gnome-session
kali 1170 0.0 0.1 81268 3280 ? SLs 10:46 0:00 /usr/bin/gpg-agent --supervised
kali 1172 0.7 2.1 471948 42744 ? Sl 10:46 0:40 xfwm4
kali 1176 0.0 0.3 311832 7288 ? Ssl 10:46 0:00 /usr/libexec/gvfsd
kali 1182 0.0 0.5 457272 10320 ? Sl 10:46 0:00 /usr/libexec/gvfsd-fuse /run/user/1000/gvfs -f
kali 1197 0.0 1.2 305536 25420 ? Sl 10:46 0:01 xfsettingsd
root 1201 0.0 0.4 313900 8388 ? Ssl 10:46 0:00 /usr/libexec/upowerd
kali 1207 0.0 2.0 549516 41948 ? Sl 10:46 0:05 xfce4-panel
kali 1212 0.1 2.7 547484 55140 ? Sl 10:46 0:05 Thunar --daemon
kali 1223 0.0 2.1 552816 42732 ? Sl 10:46 0:01 xfdesktop
kali 1227 0.0 1.9 474032 39980 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libwhiskermenu.so 1 16777223 whiskermenu Whisker Menu Show a menu to easily access installed applications
kali 1231 0.0 2.1 567784 42680 ? Sl 10:46 0:00 nm-applet
kali 1234 0.0 0.8 260300 17296 ? Sl 10:46 0:00 /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1
kali 1245 0.0 0.2 230288 5376 ? Ssl 10:46 0:00 /usr/libexec/dconf-service
kali 1246 0.0 0.3 924300 7296 ? Sl 10:46 0:00 xiccd
kali 1256 0.0 1.3 563036 27796 ? Sl 10:46 0:00 light-locker
kali 1257 1.7 1.4 214656 28196 ? Sl 10:46 1:31 /usr/bin/vmtoolsd -n vmusr --blockFd 3
kali 1266 0.0 1.0 266420 20416 ? Sl 10:46 0:01 xfce4-power-manager
colord 1268 0.0 0.8 318596 17056 ? Ssl 10:46 0:00 /usr/libexec/colord
kali 1285 0.0 0.2 307860 5632 ? Sl 10:46 0:00 /usr/libexec/geoclue-2.0/demos/agent
kali 1345 0.0 0.0 14664 1776 ? Ssl 10:46 0:00 xcape -e Super_L Control_L Escape
kali 1347 0.0 1.6 522036 33740 ? Sl 10:46 0:01 /usr/bin/python3 /usr/bin/blueman-applet
kali 1349 0.4 1.9 453148 38676 ? Sl 10:46 0:23 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libcpugraph.so 13 16777228 cpugraph CPU Graph Graphical representation of the CPU load
kali 1352 0.0 1.0 413868 21872 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libsystray.so 14 16777229 systray Status Tray Plugin Provides status notifier items (application indicators) and legacy systray items
kali 1357 0.0 2.1 465820 43364 ? Ssl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd
kali 1359 0.4 1.2 366720 24396 ? Sl 10:46 0:24 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libgenmon.so 15 16777230 genmon Generic Monitor Show output of a command.
kali 1361 0.0 2.1 543716 43084 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libpulseaudio-plugin.so 16 16777231 pulseaudio PulseAudio Plugin Adjust the audio volume of the PulseAudio sound system
kali 1362 0.0 1.8 546524 37336 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libnotification-plugin.so 17 16777232 notification-plugin Notification Plugin Notification plugin for the Xfce panel
kali 1376 0.0 1.8 399624 37104 ? Sl 10:46 0:01 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libxfce4powermanager.so 18 16777233 power-manager-plugin Power Manager Plugin Display the battery levels of your devices and control the brightness of your display
kali 1421 0.0 1.8 473200 36872 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libactions.so 22 16777234 actions Action Buttons Log out, lock or other system actions
kali 1518 0.0 0.3 49052 7168 ? Ss 10:47 0:00 /usr/libexec/bluetooth/obexd
kali 1519 0.0 0.5 425744 11984 ? Ssl 10:47 0:00 /usr/libexec/gvfs-udisks2-volume-monitor
root 1523 0.0 0.8 470944 16460 ? Ssl 10:47 0:00 /usr/libexec/udisks2/udisksd
kali 1532 0.0 0.2 307324 5896 ? Ssl 10:47 0:00 /usr/libexec/gvfs-goa-volume-monitor
kali 1537 0.0 0.3 308304 6520 ? Ssl 10:47 0:00 /usr/libexec/gvfs-gphoto2-volume-monitor
kali 1550 0.0 0.4 386360 9752 ? Ssl 10:47 0:00 /usr/libexec/gvfs-afc-volume-monitor
kali 1556 0.0 0.3 307344 6132 ? Ssl 10:47 0:00 /usr/libexec/gvfs-mtp-volume-monitor
kali 1570 0.0 0.5 533316 10476 ? Sl 10:47 0:00 /usr/libexec/gvfsd-trash --spawner :1.22 /org/gtk/gvfs/exec_spaw/0
kali 1579 0.0 0.3 233852 6164 ? Ssl 10:47 0:00 /usr/libexec/gvfsd-metadata
kali 1795 0.1 4.3 456192 87404 ? Rl 10:47 0:06 /usr/bin/qterminal
kali 1806 0.0 0.3 14160 7640 pts/0 Ss 10:47 0:04 /usr/bin/zsh
kali 2226 3.2 3.1 834216 62504 ? Sl 10:48 2:49 mousepad
kali 2496 0.0 0.6 459720 12288 ? Sl 10:48 0:00 /usr/libexec/gvfsd-network --spawner :1.22 /org/gtk/gvfs/exec_spaw/1
kali 2550 0.0 0.5 388184 10476 ? Sl 10:48 0:00 /usr/libexec/gvfsd-dnssd --spawner :1.22 /org/gtk/gvfs/exec_spaw/3
kali 4723 0.0 0.7 548320 14260 ? Ssl 10:50 0:00 /usr/libexec/xdg-desktop-portal
kali 4728 0.0 0.5 608116 11444 ? Ssl 10:50 0:00 /usr/libexec/xdg-document-portal
kali 4732 0.0 0.3 310608 6256 ? Ssl 10:50 0:00 /usr/libexec/xdg-permission-store
root 4739 0.0 0.0 2484 1664 ? Ss 10:50 0:00 fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc
kali 4744 0.0 0.8 409996 17692 ? Ssl 10:50 0:00 /usr/libexec/xdg-desktop-portal-gtk
root 16368 0.0 0.0 0 0 ? I< 11:11 0:03 [kworker/3:1H-kblockd]
root 26214 0.0 0.0 0 0 ? I 11:29 0:00 [kworker/0:1-rcu_par_gp]
root 31195 0.0 0.0 0 0 ? I 11:39 0:00 [kworker/3:1-rcu_par_gp]
root 37087 0.0 0.0 0 0 ? I 11:50 0:00 [kworker/2:0-rcu_par_gp]
root 37305 0.0 0.0 0 0 ? I< 11:50 0:00 [kworker/2:1H-kblockd]
root 37790 0.0 0.0 0 0 ? I 11:51 0:00 [kworker/u64:2-events_unbound]
kali 38395 0.0 0.4 307216 8080 ? Sl 11:52 0:00 /usr/lib/x86_64-linux-gnu/xfce4/xfconf/xfconfd
root 42601 0.0 0.0 0 0 ? I 12:00 0:00 [kworker/0:0-events]
root 42603 0.0 0.0 0 0 ? I 12:00 0:00 [kworker/1:1-events]
root 42604 0.0 0.0 0 0 ? I 12:00 0:00 [kworker/1:3-rcu_par_gp]
root 42685 0.1 0.0 0 0 ? I 12:01 0:01 [kworker/2:1-mm_percpu_wq]
root 42686 0.0 0.0 0 0 ? I 12:01 0:00 [kworker/u64:4-writeback]
root 43387 0.0 0.2 10156 4892 pts/0 S+ 12:01 0:00 sudo su
root 43404 0.0 0.0 10156 1592 pts/1 Ss 12:01 0:00 sudo su
root 43405 0.0 0.2 9120 4096 pts/1 S 12:01 0:00 su
root 43406 0.1 0.3 10296 6668 pts/1 S 12:01 0:01 zsh
root 43535 0.0 0.2 9152 4352 pts/1 S 12:01 0:00 su kali
kali 43536 0.0 0.3 13808 7728 pts/1 S 12:01 0:00 zsh
root 43584 0.1 0.0 0 0 ? I< 12:01 0:01 [kworker/0:2H-kblockd]
root 45779 0.1 0.0 0 0 ? I< 12:02 0:01 [kworker/1:2H-kblockd]
root 49765 0.0 0.0 0 0 ? I< 12:03 0:00 [kworker/2:2H-kblockd]
kali 52579 0.0 1.0 926304 20856 ? SNsl 12:09 0:00 /usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd
root 52628 0.0 0.0 0 0 ? I 12:09 0:00 [kworker/3:0-events]
root 52630 0.0 0.0 0 0 ? I 12:09 0:00 [kworker/u64:0-events_unbound]
root 59770 0.0 0.0 0 0 ? I< 12:12 0:00 [kworker/0:0H-kblockd]
root 59795 0.0 0.0 0 0 ? I< 12:12 0:00 [kworker/2:0H-kblockd]
root 61075 2.0 0.0 0 0 ? I 12:14 0:02 [kworker/2:2-mm_percpu_wq]
root 62047 0.0 0.0 0 0 ? I 12:16 0:00 [kworker/u64:1-writeback]
root 62049 0.0 0.0 0 0 ? I 12:16 0:00 [kworker/3:2-events]
root 62057 0.0 0.2 28156 5008 ? S 12:16 0:00 (udev-worker)
root 62058 0.0 0.2 28156 5008 ? S 12:16 0:00 (udev-worker)
root 62060 0.0 0.0 0 0 ? I 12:16 0:00 [kworker/1:0-events]
root 62061 0.0 0.0 0 0 ? I 12:16 0:00 [kworker/1:2-events]
root 62062 0.0 0.0 0 0 ? I 12:16 0:00 [kworker/0:2-events]
root 62089 7.6 0.2 10156 4736 pts/1 S+ 12:16 0:00 sudo ./lir.sh
root 62090 0.0 0.0 10156 1688 pts/2 Ss 12:16 0:00 sudo ./lir.sh
root 62091 9.0 0.1 7092 3200 pts/2 S+ 12:16 0:00 /bin/bash ./lir.sh
root 62115 0.0 0.0 7092 1656 pts/2 S+ 12:16 0:00 /bin/bash ./lir.sh
root 62116 0.0 0.0 7092 1656 pts/2 S+ 12:16 0:00 /bin/bash ./lir.sh
root 62117 0.0 0.2 10844 4224 pts/2 R+ 12:16 0:00 ps aux
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Display real-time system statistics.</h5>
</div>
<div class="card-body">
<pre>
[?1h=[?25l[H[2J(B[mtop - 12:16:28 up 1:30, 1 user, load average: 0.69, 0.48, 0.34(B[m[39;49m(B[m[39;49m[K
Tasks:(B[m[39;49m[1m 222 (B[m[39;49mtotal,(B[m[39;49m[1m 1 (B[m[39;49mrunning,(B[m[39;49m[1m 221 (B[m[39;49msleeping,(B[m[39;49m[1m 0 (B[m[39;49mstopped,(B[m[39;49m[1m 0 (B[m[39;49mzombie(B[m[39;49m(B[m[39;49m[K
%Cpu(s):(B[m[39;49m[1m 8.9 (B[m[39;49mus,(B[m[39;49m[1m 6.7 (B[m[39;49msy,(B[m[39;49m[1m 0.0 (B[m[39;49mni,(B[m[39;49m[1m 84.4 (B[m[39;49mid,(B[m[39;49m[1m 0.0 (B[m[39;49mwa,(B[m[39;49m[1m 0.0 (B[m[39;49mhi,(B[m[39;49m[1m 0.0 (B[m[39;49msi,(B[m[39;49m[1m 0.0 (B[m[39;49mst(B[m[39;49m(B[m (B[m[39;49m(B[m[39;49m[K
MiB Mem :(B[m[39;49m[1m 1956.1 (B[m[39;49mtotal,(B[m[39;49m[1m 630.8 (B[m[39;49mfree,(B[m[39;49m[1m 700.6 (B[m[39;49mused,(B[m[39;49m[1m 816.9 (B[m[39;49mbuff/cache(B[m[39;49m(B[m (B[m[39;49m(B[m (B[m[39;49m(B[m[39;49m[K
MiB Swap:(B[m[39;49m[1m 1024.0 (B[m[39;49mtotal,(B[m[39;49m[1m 825.2 (B[m[39;49mfree,(B[m[39;49m[1m 198.8 (B[m[39;49mused.(B[m[39;49m[1m 1255.4 (B[m[39;49mavail Mem (B[m[39;49m(B[m[39;49m[K
[K
[7m PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND (B[m[39;49m[K
(B[m 16 root 20 0 0 0 0 I 9.1 0.0 0:04.85 rcu_pre+ (B[m[39;49m[K
(B[m[1m 62120 root 20 0 11720 5504 3328 R 9.1 0.3 0:00.02 top (B[m[39;49m[K
(B[m 1 root 20 0 21320 12620 9292 S 0.0 0.6 0:12.86 systemd (B[m[39;49m[K
(B[m 2 root 20 0 0 0 0 S 0.0 0.0 0:00.03 kthreadd (B[m[39;49m[K
(B[m 3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp (B[m[39;49m[K
(B[m 4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par+ (B[m[39;49m[K
(B[m 5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 slub_fl+ (B[m[39;49m[K
(B[m 6 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 netns (B[m[39;49m[K
(B[m 11 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_perc+ (B[m[39;49m[K
(B[m 12 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+ (B[m[39;49m[K
(B[m 13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+ (B[m[39;49m[K
(B[m 14 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+ (B[m[39;49m[K
(B[m 15 root 20 0 0 0 0 S 0.0 0.0 0:00.59 ksoftir+ (B[m[39;49m[K
(B[m 17 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+ (B[m[39;49m[K
(B[m 18 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+ (B[m[39;49m[K
(B[m 19 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0 (B[m[39;49m[K
(B[m 20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1 (B[m[39;49m[K[?1l>[25;1H
[?12l[?25h[K
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">User Accounts.</h5>
</div>
<div class="card-body">
<pre>
root:x:0:0:root:/root:/usr/bin/zsh
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:/run/ircd:/usr/sbin/nologin
_apt:x:42:65534::/nonexistent:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin
systemd-timesync:x:992:992:systemd Time Synchronization:/:/usr/sbin/nologin
messagebus:x:100:102::/nonexistent:/usr/sbin/nologin
tss:x:101:104:TPM software stack,,,:/var/lib/tpm:/bin/false
strongswan:x:102:65534::/var/lib/strongswan:/usr/sbin/nologin
tcpdump:x:103:105::/nonexistent:/usr/sbin/nologin
usbmux:x:104:46:usbmux daemon,,,:/var/lib/usbmux:/usr/sbin/nologin
sshd:x:105:65534::/run/sshd:/usr/sbin/nologin
dnsmasq:x:106:65534:dnsmasq,,,:/var/lib/misc:/usr/sbin/nologin
avahi:x:107:108:Avahi mDNS daemon,,,:/run/avahi-daemon:/usr/sbin/nologin
speech-dispatcher:x:108:29:Speech Dispatcher,,,:/run/speech-dispatcher:/bin/false
pulse:x:109:110:PulseAudio daemon,,,:/run/pulse:/usr/sbin/nologin
lightdm:x:110:112:Light Display Manager:/var/lib/lightdm:/bin/false
saned:x:111:114::/var/lib/saned:/usr/sbin/nologin
polkitd:x:991:991:polkit:/nonexistent:/usr/sbin/nologin
rtkit:x:112:115:RealtimeKit,,,:/proc:/usr/sbin/nologin
colord:x:113:116:colord colour management daemon,,,:/var/lib/colord:/usr/sbin/nologin
nm-openvpn:x:114:117:NetworkManager OpenVPN,,,:/var/lib/openvpn/chroot:/usr/sbin/nologin
nm-openconnect:x:115:118:NetworkManager OpenConnect plugin,,,:/var/lib/NetworkManager:/usr/sbin/nologin
_galera:x:116:65534::/nonexistent:/usr/sbin/nologin
mysql:x:117:120:MariaDB Server,,,:/nonexistent:/bin/false
stunnel4:x:990:990:stunnel service system account:/var/run/stunnel4:/usr/sbin/nologin
_rpc:x:118:65534::/run/rpcbind:/usr/sbin/nologin
geoclue:x:119:122::/var/lib/geoclue:/usr/sbin/nologin
Debian-snmp:x:120:123::/var/lib/snmp:/bin/false
sslh:x:121:124::/nonexistent:/usr/sbin/nologin
ntpsec:x:122:127::/nonexistent:/usr/sbin/nologin
redsocks:x:123:128::/var/run/redsocks:/usr/sbin/nologin
rwhod:x:124:65534::/var/spool/rwho:/usr/sbin/nologin
_gophish:x:125:130::/var/lib/gophish:/usr/sbin/nologin
iodine:x:126:65534::/run/iodine:/usr/sbin/nologin
miredo:x:127:65534::/var/run/miredo:/usr/sbin/nologin
statd:x:128:65534::/var/lib/nfs:/usr/sbin/nologin
redis:x:129:131::/var/lib/redis:/usr/sbin/nologin
postgres:x:130:132:PostgreSQL administrator,,,:/var/lib/postgresql:/bin/bash
mosquitto:x:131:133::/var/lib/mosquitto:/usr/sbin/nologin
inetsim:x:132:134::/var/lib/inetsim:/usr/sbin/nologin
_gvm:x:133:136::/var/lib/openvas:/usr/sbin/nologin
kali:x:1000:1000:,,,:/home/kali:/usr/bin/zsh
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Password Information.</h5>
</div>
<div class="card-body">
<pre>
root:*:19691:0:99999:7:::
daemon:*:19691:0:99999:7:::
bin:*:19691:0:99999:7:::
sys:*:19691:0:99999:7:::
sync:*:19691:0:99999:7:::
games:*:19691:0:99999:7:::
man:*:19691:0:99999:7:::
lp:*:19691:0:99999:7:::
mail:*:19691:0:99999:7:::
news:*:19691:0:99999:7:::
uucp:*:19691:0:99999:7:::
proxy:*:19691:0:99999:7:::
www-data:*:19691:0:99999:7:::
backup:*:19691:0:99999:7:::
list:*:19691:0:99999:7:::
irc:*:19691:0:99999:7:::
_apt:*:19691:0:99999:7:::
nobody:*:19691:0:99999:7:::
systemd-network:!*:19691::::::
systemd-timesync:!*:19691::::::
messagebus:!:19691::::::
tss:!:19691::::::
strongswan:!:19691::::::
tcpdump:!:19691::::::
usbmux:!:19691::::::
sshd:!:19691::::::
dnsmasq:!:19691::::::
avahi:!:19691::::::
speech-dispatcher:!:19691::::::
pulse:!:19691::::::
lightdm:!:19691::::::
saned:!:19691::::::
polkitd:!*:19691::::::
rtkit:!:19691::::::
colord:!:19691::::::
nm-openvpn:!:19691::::::
nm-openconnect:!:19691::::::
_galera:!:19691::::::
mysql:!:19691::::::
stunnel4:!*:19691::::::
_rpc:!:19691::::::
geoclue:!:19691::::::
Debian-snmp:!:19691::::::
sslh:!:19691::::::
ntpsec:!:19691::::::
redsocks:!:19691::::::
rwhod:!:19691::::::
_gophish:!:19691::::::
iodine:!:19691::::::
miredo:!:19691::::::
statd:!:19691::::::
redis:!:19691::::::
postgres:!:19691::::::
mosquitto:!:19691::::::
inetsim:!:19691::::::
_gvm:!:19691::::::
kali:$y$j9T$glYiQhCWNL.Q9sL/M5cXO/$J6qRnOUQXn.6Hv7LzmJjToyraoKBL8wmq52l8a4Y7ND:19691:0:99999:7:::
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Information about user groups.</h5>
</div>
<div class="card-body">
<pre>
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:kali
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
uucp:x:10:
man:x:12:
proxy:x:13:
kmem:x:15:
dialout:x:20:kali
fax:x:21:
voice:x:22:
cdrom:x:24:kali
floppy:x:25:kali
tape:x:26:
sudo:x:27:kali
audio:x:29:pulse,kali
dip:x:30:kali
www-data:x:33:
backup:x:34:
operator:x:37:
list:x:38:
irc:x:39:
src:x:40:
shadow:x:42:
utmp:x:43:
video:x:44:kali
sasl:x:45:
plugdev:x:46:kali
staff:x:50:
games:x:60:
users:x:100:kali
nogroup:x:65534:
systemd-journal:x:999:
systemd-network:x:998:
crontab:x:997:
input:x:996:
sgx:x:995:
kvm:x:994:
render:x:993:
netdev:x:101:kali
systemd-timesync:x:992:
messagebus:x:102:
_ssh:x:103:
tss:x:104:
tcpdump:x:105:
bluetooth:x:106:kali
plocate:x:107:
avahi:x:108:
pipewire:x:109:
pulse:x:110:
pulse-access:x:111:
lightdm:x:112:
scanner:x:113:saned,kali
saned:x:114:
polkitd:x:991:
rtkit:x:115:
colord:x:116:
nm-openvpn:x:117:
nm-openconnect:x:118:
kali-trusted:x:119:
mysql:x:120:
rdma:x:121:
stunnel4:x:990:stunnel4
geoclue:x:122:
Debian-snmp:x:123:
sslh:x:124:
ssl-cert:x:125:postgres
i2c:x:126:
ntpsec:x:127:
redsocks:x:128:
kismet:x:129:
_gophish:x:130:
redis:x:131:_gvm
postgres:x:132:
mosquitto:x:133:
sambashare:x:989:
inetsim:x:134:
wireshark:x:135:kali
_gvm:x:136:
kali:x:1000:
kaboxer:x:137:kali
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">sudoers file content.</h5>
</div>
<div class="card-body">
<pre>
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# This fixes CVE-2005-4890 and possibly breaks some versions of kdesu
# (#1011624, https://bugs.kde.org/show_bug.cgi?id=452532)
Defaults use_pty
# This preserves proxy settings from user environments of root
# equivalent users (group sudo)
#Defaults:%sudo env_keep += "http_proxy https_proxy ftp_proxy all_proxy no_proxy"
# This allows running arbitrary commands, but so does ALL, and it means
# different sudoers have their choice of editor respected.
#Defaults:%sudo env_keep += "EDITOR"
# Completely harmless preservation of a user preference.
#Defaults:%sudo env_keep += "GREP_COLOR"
# While you shouldn't normally run git as root, you need to with etckeeper
#Defaults:%sudo env_keep += "GIT_AUTHOR_* GIT_COMMITTER_*"
# Per-user preferences; root won't have sensible values for them.
#Defaults:%sudo env_keep += "EMAIL DEBEMAIL DEBFULLNAME"
# "sudo scp" or "sudo rsync" should be able to use your SSH agent.
#Defaults:%sudo env_keep += "SSH_AGENT_PID SSH_AUTH_SOCK"
# Ditto for GPG agent
#Defaults:%sudo env_keep += "GPG_AGENT_INFO"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "@include" directives:
@includedir /etc/sudoers.d
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Last Login Information.</h5>
</div>
<div class="card-body">
<pre>
Username Port From Latest
root **Never logged in**
daemon **Never logged in**
bin **Never logged in**
sys **Never logged in**
sync **Never logged in**
games **Never logged in**
man **Never logged in**
lp **Never logged in**
mail **Never logged in**
news **Never logged in**
uucp **Never logged in**
proxy **Never logged in**
www-data **Never logged in**
backup **Never logged in**
list **Never logged in**
irc **Never logged in**
_apt **Never logged in**
nobody **Never logged in**
systemd-network **Never logged in**
systemd-timesync **Never logged in**
messagebus **Never logged in**
tss **Never logged in**
strongswan **Never logged in**
tcpdump **Never logged in**
usbmux **Never logged in**
sshd **Never logged in**
dnsmasq **Never logged in**
avahi **Never logged in**
speech-dispatcher **Never logged in**
pulse **Never logged in**
lightdm **Never logged in**
saned **Never logged in**
polkitd **Never logged in**
rtkit **Never logged in**
colord **Never logged in**
nm-openvpn **Never logged in**
nm-openconnect **Never logged in**
_galera **Never logged in**
mysql **Never logged in**
stunnel4 **Never logged in**
_rpc **Never logged in**
geoclue **Never logged in**
Debian-snmp **Never logged in**
sslh **Never logged in**
ntpsec **Never logged in**
redsocks **Never logged in**
rwhod **Never logged in**
_gophish **Never logged in**
iodine **Never logged in**
miredo **Never logged in**
statd **Never logged in**
redis **Never logged in**
postgres **Never logged in**
mosquitto **Never logged in**
inetsim **Never logged in**
_gvm **Never logged in**
kali **Never logged in**
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Authentication logs.</h5>
</div>
<div class="card-body">
<pre>
tail: cannot open '/var/log/auth.log' for reading: No such file or directory
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">System logs.</h5>
</div>
<div class="card-body">
<pre>
tail: cannot open '/var/log/syslog.log' for reading: No such file or directory
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Demon logs.</h5>
</div>
<div class="card-body">
<pre>
tail: cannot open '/var/log/demon.log' for reading: No such file or directory
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Apache Access Logs.</h5>
</div>
<div class="card-body">
<pre>
tail: cannot open '/var/log/apache/access.log' for reading: No such file or directory
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Nginx Access Logs.</h5>
</div>
<div class="card-body">
<pre>
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">MySQL Server Logs.</h5>
</div>
<div class="card-body">
<pre>
tail: cannot open '/var/log/mysqld.log' for reading: No such file or directory
</pre>
</div>
</div>
<div class="card mt-3">
<div class="card-header bg-dark text-white">
<h5 class="mb-0">Detailed Process Information.</h5>
</div>
<div class="card-body">
<pre>
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.2 0.6 21320 12620 ? Ss 10:46 0:12 /sbin/init splash
root 2 0.0 0.0 0 0 ? S 10:46 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? I< 10:46 0:00 [rcu_gp]
root 4 0.0 0.0 0 0 ? I< 10:46 0:00 [rcu_par_gp]
root 5 0.0 0.0 0 0 ? I< 10:46 0:00 [slub_flushwq]
root 6 0.0 0.0 0 0 ? I< 10:46 0:00 [netns]
root 11 0.0 0.0 0 0 ? I< 10:46 0:00 [mm_percpu_wq]
root 12 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_kthread]
root 13 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_rude_kthread]
root 14 0.0 0.0 0 0 ? I 10:46 0:00 [rcu_tasks_trace_kthread]
root 15 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/0]
root 16 0.0 0.0 0 0 ? I 10:46 0:04 [rcu_preempt]
root 17 0.0 0.0 0 0 ? S 10:46 0:00 [migration/0]
root 18 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/0]
root 19 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/0]
root 20 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/1]
root 21 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/1]
root 22 0.0 0.0 0 0 ? S 10:46 0:00 [migration/1]
root 23 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/1]
root 26 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/2]
root 27 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/2]
root 28 0.0 0.0 0 0 ? S 10:46 0:00 [migration/2]
root 29 0.0 0.0 0 0 ? R 10:46 0:00 [ksoftirqd/2]
root 32 0.0 0.0 0 0 ? S 10:46 0:00 [cpuhp/3]
root 33 0.0 0.0 0 0 ? S 10:46 0:00 [idle_inject/3]
root 34 0.0 0.0 0 0 ? S 10:46 0:00 [migration/3]
root 35 0.0 0.0 0 0 ? S 10:46 0:00 [ksoftirqd/3]
root 37 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/3:0H-kblockd]
root 42 0.0 0.0 0 0 ? S 10:46 0:00 [kdevtmpfs]
root 43 0.0 0.0 0 0 ? I< 10:46 0:00 [inet_frag_wq]
root 44 0.0 0.0 0 0 ? S 10:46 0:00 [kauditd]
root 46 0.0 0.0 0 0 ? S 10:46 0:00 [khungtaskd]
root 47 0.0 0.0 0 0 ? S 10:46 0:00 [oom_reaper]
root 48 0.0 0.0 0 0 ? I< 10:46 0:00 [writeback]
root 49 0.0 0.0 0 0 ? S 10:46 0:04 [kcompactd0]
root 50 0.0 0.0 0 0 ? SN 10:46 0:00 [ksmd]
root 51 0.0 0.0 0 0 ? SN 10:46 0:00 [khugepaged]
root 52 0.0 0.0 0 0 ? I< 10:46 0:00 [kintegrityd]
root 53 0.0 0.0 0 0 ? I< 10:46 0:00 [kblockd]
root 54 0.0 0.0 0 0 ? I< 10:46 0:00 [blkcg_punt_bio]
root 56 0.0 0.0 0 0 ? I< 10:46 0:00 [tpm_dev_wq]
root 57 0.0 0.0 0 0 ? I< 10:46 0:00 [edac-poller]
root 58 0.0 0.0 0 0 ? I< 10:46 0:00 [devfreq_wq]
root 59 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/0:1H-kblockd]
root 60 0.1 0.0 0 0 ? S 10:46 0:06 [kswapd0]
root 68 0.0 0.0 0 0 ? I< 10:46 0:00 [kthrotld]
root 70 0.0 0.0 0 0 ? S 10:46 0:00 [irq/24-pciehp]
root 71 0.0 0.0 0 0 ? S 10:46 0:00 [irq/25-pciehp]
root 72 0.0 0.0 0 0 ? S 10:46 0:00 [irq/26-pciehp]
root 73 0.0 0.0 0 0 ? S 10:46 0:00 [irq/27-pciehp]
root 74 0.0 0.0 0 0 ? S 10:46 0:00 [irq/28-pciehp]
root 75 0.0 0.0 0 0 ? S 10:46 0:00 [irq/29-pciehp]
root 76 0.0 0.0 0 0 ? S 10:46 0:00 [irq/30-pciehp]
root 77 0.0 0.0 0 0 ? S 10:46 0:00 [irq/31-pciehp]
root 78 0.0 0.0 0 0 ? S 10:46 0:00 [irq/32-pciehp]
root 79 0.0 0.0 0 0 ? S 10:46 0:00 [irq/33-pciehp]
root 80 0.0 0.0 0 0 ? S 10:46 0:00 [irq/34-pciehp]
root 81 0.0 0.0 0 0 ? S 10:46 0:00 [irq/35-pciehp]
root 82 0.0 0.0 0 0 ? S 10:46 0:00 [irq/36-pciehp]
root 83 0.0 0.0 0 0 ? S 10:46 0:00 [irq/37-pciehp]
root 84 0.0 0.0 0 0 ? S 10:46 0:00 [irq/38-pciehp]
root 85 0.0 0.0 0 0 ? S 10:46 0:00 [irq/39-pciehp]
root 86 0.0 0.0 0 0 ? S 10:46 0:00 [irq/40-pciehp]
root 87 0.0 0.0 0 0 ? S 10:46 0:00 [irq/41-pciehp]
root 88 0.0 0.0 0 0 ? S 10:46 0:00 [irq/42-pciehp]
root 89 0.0 0.0 0 0 ? S 10:46 0:00 [irq/43-pciehp]
root 90 0.0 0.0 0 0 ? S 10:46 0:00 [irq/44-pciehp]
root 91 0.0 0.0 0 0 ? S 10:46 0:00 [irq/45-pciehp]
root 92 0.0 0.0 0 0 ? S 10:46 0:00 [irq/46-pciehp]
root 93 0.0 0.0 0 0 ? S 10:46 0:00 [irq/47-pciehp]
root 94 0.0 0.0 0 0 ? S 10:46 0:00 [irq/48-pciehp]
root 95 0.0 0.0 0 0 ? S 10:46 0:00 [irq/49-pciehp]
root 96 0.0 0.0 0 0 ? S 10:46 0:00 [irq/50-pciehp]
root 97 0.0 0.0 0 0 ? S 10:46 0:00 [irq/51-pciehp]
root 98 0.0 0.0 0 0 ? S 10:46 0:00 [irq/52-pciehp]
root 99 0.0 0.0 0 0 ? S 10:46 0:00 [irq/53-pciehp]
root 100 0.0 0.0 0 0 ? S 10:46 0:00 [irq/54-pciehp]
root 101 0.0 0.0 0 0 ? S 10:46 0:00 [irq/55-pciehp]
root 102 0.0 0.0 0 0 ? I< 10:46 0:00 [acpi_thermal_pm]
root 103 0.0 0.0 0 0 ? I< 10:46 0:00 [mld]
root 104 0.0 0.0 0 0 ? I< 10:46 0:00 [ipv6_addrconf]
root 109 0.0 0.0 0 0 ? I< 10:46 0:00 [kstrp]
root 113 0.0 0.0 0 0 ? I< 10:46 0:00 [kworker/u65:0]
root 175 0.0 0.0 0 0 ? I< 10:46 0:01 [kworker/1:1H-kblockd]
root 178 0.0 0.0 0 0 ? I< 10:46 0:00 [cryptd]
root 179 0.0 0.0 0 0 ? I< 10:46 0:00 [ata_sff]
root 180 0.0 0.0 0 0 ? I< 10:46 0:00 [mpt_poll_0]
root 183 0.0 0.0 0 0 ? I< 10:46 0:00 [mpt/0]
root 186 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_0]
root 187 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_0]
root 188 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_1]
root 189 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_1]
root 193 0.0 0.0 0 0 ? S 10:46 0:00 [irq/16-vmwgfx]
root 194 0.0 0.0 0 0 ? I< 10:46 0:00 [ttm]
root 238 0.0 0.0 0 0 ? S 10:46 0:00 [scsi_eh_2]
root 239 0.0 0.0 0 0 ? I< 10:46 0:00 [scsi_tmf_2]
root 276 0.0 0.0 0 0 ? S 10:46 0:01 [jbd2/sda1-8]
root 277 0.0 0.0 0 0 ? I< 10:46 0:00 [ext4-rsv-conver]
root 334 0.0 0.7 50080 15372 ? Ss 10:46 0:00 /lib/systemd/systemd-journald
root 352 0.0 0.0 227028 1548 ? Ssl 10:46 0:00 vmware-vmblock-fuse /run/vmblock-fuse -o rw,subtype=vmware-vmblock,default_permissions,allow_other,dev,suid
root 363 0.0 0.3 28152 7828 ? Ss 10:46 0:00 /lib/systemd/systemd-udevd
root 416 0.0 0.0 0 0 ? S 10:46 0:00 [psimon]
root 498 0.0 0.1 8264 2108 ? Ss 10:46 0:00 /usr/sbin/haveged --Foreground --verbose=1
root 507 1.6 0.6 315084 12816 ? Ssl 10:46 1:27 /usr/bin/vmtoolsd
root 527 0.0 0.0 0 0 ? S 10:46 0:00 [irq/56-vmw_vmci]
root 528 0.0 0.0 0 0 ? S 10:46 0:00 [irq/57-vmw_vmci]
root 531 0.0 0.0 0 0 ? I< 10:46 0:00 [rpciod]
root 534 0.0 0.0 0 0 ? I< 10:46 0:00 [xprtiod]
root 792 0.0 0.4 310884 9336 ? Ssl 10:46 0:00 /usr/libexec/accounts-daemon
root 793 0.0 0.1 6636 2560 ? Ss 10:46 0:00 /usr/sbin/cron -f
message+ 794 0.0 0.2 10768 5504 ? Ss 10:46 0:04 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
polkitd 797 0.0 0.4 384128 9044 ? Ssl 10:46 0:01 /usr/lib/polkit-1/polkitd --no-debug
root 799 0.0 0.4 17588 8064 ? Ss 10:46 0:00 /lib/systemd/systemd-logind
root 805 0.0 1.0 333168 20692 ? Ssl 10:46 0:01 /usr/sbin/NetworkManager --no-daemon
root 819 0.0 0.5 392128 10272 ? Ssl 10:46 0:00 /usr/sbin/ModemManager
root 873 0.0 0.3 382324 7012 ? SLsl 10:46 0:00 /usr/sbin/lightdm
root 891 7.4 7.5 427564 150700 tty7 Rsl+ 10:46 6:43 /usr/lib/xorg/Xorg :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
root 893 0.0 0.0 5896 1664 tty1 Ss+ 10:46 0:00 /sbin/agetty -o -p -- \u --noclear - linux
root 920 0.0 0.0 0 0 ? S 10:46 0:00 [psimon]
rtkit 950 0.0 0.1 22804 3200 ? SNsl 10:46 0:00 /usr/libexec/rtkit-daemon
root 1025 0.0 0.3 236260 7584 ? Sl 10:46 0:00 lightdm --session-child 13 24
kali 1032 0.0 0.5 19820 11008 ? Ss 10:46 0:00 /lib/systemd/systemd --user
kali 1033 0.0 0.2 22148 4864 ? S 10:46 0:00 (sd-pam)
kali 1049 0.0 0.6 118724 12544 ? S<sl 10:46 0:00 /usr/bin/pipewire
kali 1050 0.0 0.2 95216 5376 ? Ssl 10:46 0:00 /usr/bin/pipewire -c filter-chain.conf
kali 1051 0.0 1.4 576544 29324 ? S<sl 10:46 0:00 /usr/bin/wireplumber
kali 1052 0.0 0.3 101116 7936 ? S<sl 10:46 0:00 /usr/bin/pipewire-pulse
kali 1053 0.0 0.2 9956 5632 ? Ss 10:46 0:01 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
kali 1055 0.0 0.4 314240 8140 ? SLsl 10:46 0:00 /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/1000/keyring
kali 1077 0.0 1.2 341140 25236 ? Ssl 10:46 0:00 xfce4-session
kali 1128 0.0 0.0 7952 1140 ? Ss 10:46 0:00 /usr/bin/ssh-agent x-session-manager
kali 1139 0.0 0.3 385112 7628 ? Ssl 10:46 0:00 /usr/libexec/at-spi-bus-launcher
kali 1146 0.0 0.2 9388 4608 ? S 10:46 0:00 /usr/bin/dbus-daemon --config-file=/usr/share/defaults/at-spi2/accessibility.conf --nofork --print-address 11 --address=unix:path=/run/user/1000/at-spi/bus_0
kali 1158 0.0 0.3 238380 7512 ? Sl 10:46 0:01 /usr/libexec/at-spi2-registryd --use-gnome-session
kali 1170 0.0 0.1 81268 3280 ? SLs 10:46 0:00 /usr/bin/gpg-agent --supervised
kali 1172 0.7 2.1 471948 42744 ? Sl 10:46 0:40 xfwm4
kali 1176 0.0 0.3 311832 7288 ? Ssl 10:46 0:00 /usr/libexec/gvfsd
kali 1182 0.0 0.5 457272 10320 ? Sl 10:46 0:00 /usr/libexec/gvfsd-fuse /run/user/1000/gvfs -f
kali 1197 0.0 1.2 305536 25420 ? Sl 10:46 0:01 xfsettingsd
root 1201 0.0 0.4 313900 8388 ? Ssl 10:46 0:00 /usr/libexec/upowerd
kali 1207 0.0 2.0 549516 41948 ? Sl 10:46 0:05 xfce4-panel
kali 1212 0.1 2.7 547484 55140 ? Rl 10:46 0:05 Thunar --daemon
kali 1223 0.0 2.1 552816 42732 ? Sl 10:46 0:01 xfdesktop
kali 1227 0.0 1.9 474032 39980 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libwhiskermenu.so 1 16777223 whiskermenu Whisker Menu Show a menu to easily access installed applications
kali 1231 0.0 2.1 567784 42680 ? Sl 10:46 0:00 nm-applet
kali 1234 0.0 0.8 260300 17296 ? Sl 10:46 0:00 /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1
kali 1245 0.0 0.2 230288 5376 ? Ssl 10:46 0:00 /usr/libexec/dconf-service
kali 1246 0.0 0.3 924300 7296 ? Sl 10:46 0:00 xiccd
kali 1256 0.0 1.3 563036 27796 ? Sl 10:46 0:00 light-locker
kali 1257 1.7 1.4 214656 28196 ? Sl 10:46 1:31 /usr/bin/vmtoolsd -n vmusr --blockFd 3
kali 1266 0.0 1.0 266420 20416 ? Sl 10:46 0:01 xfce4-power-manager
colord 1268 0.0 0.8 318596 17056 ? Ssl 10:46 0:00 /usr/libexec/colord
kali 1285 0.0 0.2 307860 5632 ? Sl 10:46 0:00 /usr/libexec/geoclue-2.0/demos/agent
kali 1345 0.0 0.0 14664 1776 ? Ssl 10:46 0:00 xcape -e Super_L Control_L Escape
kali 1347 0.0 1.6 522036 33740 ? Sl 10:46 0:01 /usr/bin/python3 /usr/bin/blueman-applet
kali 1349 0.4 1.9 453148 38676 ? Sl 10:46 0:23 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libcpugraph.so 13 16777228 cpugraph CPU Graph Graphical representation of the CPU load
kali 1352 0.0 1.0 413868 21872 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libsystray.so 14 16777229 systray Status Tray Plugin Provides status notifier items (application indicators) and legacy systray items
kali 1357 0.0 2.1 465820 43364 ? Ssl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd
kali 1359 0.4 1.2 366720 24396 ? Sl 10:46 0:24 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libgenmon.so 15 16777230 genmon Generic Monitor Show output of a command.
kali 1361 0.0 2.1 543716 43084 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libpulseaudio-plugin.so 16 16777231 pulseaudio PulseAudio Plugin Adjust the audio volume of the PulseAudio sound system
kali 1362 0.0 1.8 546524 37336 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libnotification-plugin.so 17 16777232 notification-plugin Notification Plugin Notification plugin for the Xfce panel
kali 1376 0.0 1.8 399624 37104 ? Sl 10:46 0:01 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libxfce4powermanager.so 18 16777233 power-manager-plugin Power Manager Plugin Display the battery levels of your devices and control the brightness of your display
kali 1421 0.0 1.8 473200 36872 ? Sl 10:46 0:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libactions.so 22 16777234 actions Action Buttons Log out, lock or other system actions
kali 1518 0.0 0.3 49052 7168 ? Ss 10:47 0:00 /usr/libexec/bluetooth/obexd
kali 1519 0.0 0.5 425744 11984 ? Ssl 10:47 0:00 /usr/libexec/gvfs-udisks2-volume-monitor
root 1523 0.0 0.8 470944 16460 ? Ssl 10:47 0:00 /usr/libexec/udisks2/udisksd
kali 1532 0.0 0.2 307324 5896 ? Ssl 10:47 0:00 /usr/libexec/gvfs-goa-volume-monitor
kali 1537 0.0 0.3 308304 6520 ? Ssl 10:47 0:00 /usr/libexec/gvfs-gphoto2-volume-monitor
kali 1550 0.0 0.4 386360 9752 ? Ssl 10:47 0:00 /usr/libexec/gvfs-afc-volume-monitor
kali 1556 0.0 0.3 307344 6132 ? Ssl 10:47 0:00 /usr/libexec/gvfs-mtp-volume-monitor
kali 1570 0.0 0.5 533316 10476 ? Sl 10:47 0:00 /usr/libexec/gvfsd-trash --spawner :1.22 /org/gtk/gvfs/exec_spaw/0
kali 1579 0.0 0.3 233852 6164 ? Ssl 10:47 0:00 /usr/libexec/gvfsd-metadata
kali 1795 0.1 4.3 456192 87404 ? Sl 10:47 0:06 /usr/bin/qterminal
kali 1806 0.0 0.3 14160 7640 pts/0 Ss 10:47 0:04 /usr/bin/zsh