Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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
README
+ Create Folder
+ Create File
/
usr /
local /
lsws /
admin /
misc /
[ HOME SHELL ]
Name
Size
Permission
Action
admpass.sh
1.2
KB
-rwxr-xr-x
build_admin_php.sh
7.93
KB
-rwxr-xr-x
convertxml.php
502
B
-rw-r--r--
convertxml.sh
679
B
-rwxr-xr-x
create_admin_keypair.sh
334
B
-rwxr-xr-x
enable_phpa.sh
4.42
KB
-rwxr-xr-x
gdb-bt
28
B
-rw-r--r--
genjCryptionKeyPair.php
6.42
KB
-rw-r--r--
gzipStatic.sh
272
B
-rwxr-xr-x
htpasswd.php
500
B
-rw-r--r--
lscmctl
15.3
KB
-rwxr-xr-x
lshttpd.service
653
B
-rw-r--r--
lsup.sh
15.49
KB
-rwxr-xr-x
lsws.rc
1.87
KB
-rwxr-xr-x
lsws.rc.gentoo
447
B
-rwxr-xr-x
php.ini
37.29
KB
-rw-r--r--
rc-inst.sh
4.38
KB
-rwxr-xr-x
rc-uninst.sh
2.19
KB
-rwxr-xr-x
testbeta.sh
15.49
KB
-rwxr-xr-x
uninstall.sh
3.05
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rc-uninst.sh
#!/bin/sh CURDIR=`dirname "$0"` cd $CURDIR CURDIR=`pwd` INST_USER=`id` INST_USER=`expr "$INST_USER" : 'uid=.*(\(.*\)) gid=.*'` if [ $INST_USER != "root" ]; then cat <<EOF [ERROR] Only root user can uninstall the rc script! EOF exit 1 fi INIT_DIR="" if [ "x`uname -s`" = "xFreeBSD" ]; then if [ -d "/usr/local/etc/rc.d" ]; then rm -f /usr/local/etc/rc.d/lsws echo "[OK] The startup script has been successfully uninstalled!" exit 0 fi fi if [ -f "/etc/gentoo-release" ]; then rc-update del lsws default rm /etc/init.d/lsws exit 0 fi for SYSTEMDDIR in /etc/systemd/system /usr/lib/systemd/system /lib/systemd/system do if [ -d ${SYSTEMDDIR} ] && [ -e ${SYSTEMDDIR}/lshttpd.service ] ; then systemctl disable lshttpd.service if [ -e ${SYSTEMDDIR}/lsws.service ] ; then rm -f ${SYSTEMDDIR}/lsws.service fi rm -f ${SYSTEMDDIR}/lshttpd.service systemctl daemon-reload echo "[OK] The startup script has been successfully uninstalled from systemd!" fi done for path in /etc/init.d /etc/rc.d/init.d do if [ "x$INIT_DIR" = "x" ]; then if [ -d "$path" ]; then INIT_DIR=$path fi fi done if [ "x$INIT_DIR" = "x" ]; then echo "[ERROR] failed to find the init.d directory!" exit 1 fi if [ -f "$INIT_DIR/lsws" ]; then rm -f $INIT_DIR/lsws fi if [ -d "$INIT_DIR/rc2.d" ]; then INIT_BASE_DIR=$INIT_DIR else INIT_BASE_DIR=`dirname $INIT_DIR` fi if [ -d "$INIT_BASE_DIR/runlevel/default" ]; then rm -f $INIT_BASE_DIR/runlevel/default/S88lsws rm -f $INIT_BASE_DIR/runlevel/default/K12lsws fi if [ -d "$INIT_BASE_DIR/rc2.d" ]; then rm -f $INIT_BASE_DIR/rc2.d/S88lsws rm -f $INIT_BASE_DIR/rc2.d/K12lsws fi if [ -d "$INIT_BASE_DIR/rc3.d" ]; then rm -f $INIT_BASE_DIR/rc3.d/S88lsws rm -f $INIT_BASE_DIR/rc3.d/K12lsws fi if [ -d "$INIT_BASE_DIR/rc5.d" ]; then rm -f $INIT_BASE_DIR/rc5.d/S88lsws rm -f $INIT_BASE_DIR/rc5.d/K12lsws fi if [ -d "$INIT_BASE_DIR/rc0.d" ]; then rm -f $INIT_BASE_DIR/rc0.d/K12lsws fi if [ -d "$INIT_BASE_DIR/rc1.d" ]; then rm -f $INIT_BASE_DIR/rc1.d/K12lsws fi if [ -d "$INIT_BASE_DIR/rc6.d" ]; then rm -f $INIT_BASE_DIR/rc6.d/K12lsws fi echo "[OK] The startup script has been successfully uninstalled!"
Close