Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.144.149.8
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
snap /
core /
16928 /
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