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 | : 18.117.80.241
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 /
core18 /
2855 /
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