Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.16.163.43
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
network
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
system-generators
[ DIR ]
drwxr-xr-x
system-preset
[ DIR ]
drwxr-xr-x
system-shutdown
[ DIR ]
drwxr-xr-x
system-sleep
[ DIR ]
drwxr-xr-x
libsystemd-shared-237.so
2.26
MB
-rw-r--r--
resolv.conf
699
B
-rw-r--r--
set-cpufreq
1.22
KB
-rwxr-xr-x
systemd
1.54
MB
-rwxr-xr-x
systemd-ac-power
5.98
KB
-rwxr-xr-x
systemd-backlight
17.98
KB
-rwxr-xr-x
systemd-binfmt
10.06
KB
-rwxr-xr-x
systemd-cgroups-agent
9.98
KB
-rwxr-xr-x
systemd-cryptsetup
26.01
KB
-rwxr-xr-x
systemd-dissect
14.07
KB
-rwxr-xr-x
systemd-fsck
17.99
KB
-rwxr-xr-x
systemd-fsckd
22.06
KB
-rwxr-xr-x
systemd-growfs
18.06
KB
-rwxr-xr-x
systemd-hibernate-resume
9.98
KB
-rwxr-xr-x
systemd-hostnamed
22.06
KB
-rwxr-xr-x
systemd-initctl
14.06
KB
-rwxr-xr-x
systemd-journald
126.07
KB
-rwxr-xr-x
systemd-localed
34.06
KB
-rwxr-xr-x
systemd-logind
214.13
KB
-rwxr-xr-x
systemd-makefs
9.98
KB
-rwxr-xr-x
systemd-modules-load
14.06
KB
-rwxr-xr-x
systemd-networkd
1.57
MB
-rwxr-xr-x
systemd-networkd-wait-online
18.07
KB
-rwxr-xr-x
systemd-quotacheck
10.06
KB
-rwxr-xr-x
systemd-random-seed
9.98
KB
-rwxr-xr-x
systemd-remount-fs
14.06
KB
-rwxr-xr-x
systemd-reply-password
9.98
KB
-rwxr-xr-x
systemd-resolved
374.06
KB
-rwxr-xr-x
systemd-rfkill
18.06
KB
-rwxr-xr-x
systemd-shutdown
42.07
KB
-rwxr-xr-x
systemd-sleep
18.06
KB
-rwxr-xr-x
systemd-socket-proxyd
22.07
KB
-rwxr-xr-x
systemd-sulogin-shell
10.06
KB
-rwxr-xr-x
systemd-sysctl
14.06
KB
-rwxr-xr-x
systemd-sysv-install
1.28
KB
-rwxr-xr-x
systemd-timedated
26.06
KB
-rwxr-xr-x
systemd-timesyncd
38.06
KB
-rwxr-xr-x
systemd-udevd
574.44
KB
-rwxr-xr-x
systemd-update-utmp
14.06
KB
-rwxr-xr-x
systemd-user-sessions
9.98
KB
-rwxr-xr-x
systemd-veritysetup
9.98
KB
-rwxr-xr-x
systemd-volatile-root
9.98
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : systemd-sysv-install
#!/bin/sh # This script is called by "systemctl enable/disable" when the given unit is a # SysV init.d script. It needs to call the distribution's mechanism for # enabling/disabling those, such as chkconfig, update-rc.d, or similar. This # can optionally take a --root argument for enabling a SysV init script # in a chroot or similar. set -eu usage() { echo "Usage: $0 [--root=path] enable|disable|is-enabled <sysv script name>" >&2 exit 1 } ROOT= # parse options eval set -- "$(getopt -o r: --long root: -- "$@")" while true; do case "$1" in -r|--root) ROOT="$2" shift 2 ;; --) shift ; break ;; *) usage ;; esac done NAME="${2:-}" run() { if [ -n "$ROOT" ] && [ "$ROOT" != "/" ]; then chroot "$ROOT" /usr/sbin/update-rc.d "$@" else /usr/sbin/update-rc.d "$@" fi } [ -n "$NAME" ] || usage case "$1" in enable) # call the command to enable SysV init script $NAME here.. run "$NAME" defaults run "$NAME" enable ;; disable) run "$NAME" defaults run "$NAME" disable ;; is-enabled) # exit with 0 if $NAME is enabled, non-zero if it is disabled ls "$ROOT"/etc/rc[S5].d/S??"$NAME" >/dev/null 2>&1 ;; *) usage ;; esac
Close