Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.220.226.147
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
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
systemd
1.52
MB
-rwxr-xr-x
systemd-ac-power
14.26
KB
-rwxr-xr-x
systemd-activate
54.44
KB
-rwxr-xr-x
systemd-backlight
90.58
KB
-rwxr-xr-x
systemd-binfmt
46.56
KB
-rwxr-xr-x
systemd-bootchart
102.63
KB
-rwxr-xr-x
systemd-bus-proxyd
351.2
KB
-rwxr-xr-x
systemd-cgroups-agent
30.42
KB
-rwxr-xr-x
systemd-cryptsetup
90.58
KB
-rwxr-xr-x
systemd-fsck
300.02
KB
-rwxr-xr-x
systemd-fsckd
78.59
KB
-rwxr-xr-x
systemd-hibernate-resume
30.42
KB
-rwxr-xr-x
systemd-hostnamed
335.2
KB
-rwxr-xr-x
systemd-initctl
275.2
KB
-rwxr-xr-x
systemd-journald
318.59
KB
-rwxr-xr-x
systemd-localed
339.2
KB
-rwxr-xr-x
systemd-logind
608.02
KB
-rwxr-xr-x
systemd-modules-load
50.58
KB
-rwxr-xr-x
systemd-networkd
835.25
KB
-rwxr-xr-x
systemd-networkd-wait-online
122.58
KB
-rwxr-xr-x
systemd-quotacheck
34.49
KB
-rwxr-xr-x
systemd-random-seed
38.43
KB
-rwxr-xr-x
systemd-remount-fs
50.59
KB
-rwxr-xr-x
systemd-reply-password
30.42
KB
-rwxr-xr-x
systemd-resolved
656.02
KB
-rwxr-xr-x
systemd-rfkill
90.58
KB
-rwxr-xr-x
systemd-shutdown
142.61
KB
-rwxr-xr-x
systemd-sleep
70.58
KB
-rwxr-xr-x
systemd-socket-proxyd
90.58
KB
-rwxr-xr-x
systemd-sysctl
54.59
KB
-rwxr-xr-x
systemd-sysv-install
1.29
KB
-rwxr-xr-x
systemd-timedated
336.05
KB
-rwxr-xr-x
systemd-timesyncd
138.58
KB
-rwxr-xr-x
systemd-udevd
442.62
KB
-rwxr-xr-x
systemd-update-utmp
275.2
KB
-rwxr-xr-x
systemd-user-sessions
34.43
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 -e usage() { echo "Usage: $0 [--root=path] enable|disable|is-enabled <sysv script name>" >&2 exit 1 } # 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 if [ -n "$ROOT" ] && [ "$ROOT" != "/" ]; then CHROOT="chroot '$ROOT'" fi NAME="$2" [ -n "$NAME" ] || usage case "$1" in enable) # call the command to enable SysV init script $NAME here.. $CHROOT /usr/sbin/update-rc.d "$NAME" defaults $CHROOT /usr/sbin/update-rc.d "$NAME" enable ;; disable) $CHROOT /usr/sbin/update-rc.d "$NAME" defaults $CHROOT /usr/sbin/update-rc.d "$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>/dev/null ;; *) usage ;; esac
Close