Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
misc /
Delete
Unzip
Name
Size
Permission
Date
Action
admpass.sh
1.17
KB
-r-xr-xr-x
2025-02-25 04:01
build_admin_php.sh
7.93
KB
-r-xr-xr-x
2025-02-25 04:01
convertxml.php
502
B
-rw-r--r--
2025-02-25 04:01
convertxml.sh
679
B
-r-xr-xr-x
2025-02-25 04:01
create_admin_keypair.sh
334
B
-r-xr-xr-x
2025-02-25 04:01
enable_phpa.sh
4.42
KB
-r-xr-xr-x
2025-02-25 04:01
gdb-bt
28
B
-rw-r--r--
2025-02-25 04:01
genjCryptionKeyPair.php
6.42
KB
-rw-r--r--
2025-02-25 04:01
gzipStatic.sh
272
B
-r-xr-xr-x
2025-02-25 04:01
htpasswd.php
500
B
-rw-r--r--
2025-02-25 04:01
lscmctl
15.3
KB
-r-xr-xr-x
2025-02-25 04:01
lshttpd.service
653
B
-rw-r--r--
2025-02-25 04:01
lsup.sh
15.49
KB
-r-xr-xr-x
2025-02-25 04:01
lsws.rc
1.87
KB
-r-xr-xr-x
2025-02-25 04:01
lsws.rc.gentoo
447
B
-r-xr-xr-x
2025-02-25 04:01
php.ini
37.29
KB
-rw-r--r--
2025-02-25 04:01
rc-inst.sh
4.34
KB
-r-xr-xr-x
2025-02-25 04:01
rc-uninst.sh
2.19
KB
-r-xr-xr-x
2025-02-25 04:01
testbeta.sh
15.49
KB
-r-xr-xr-x
2025-02-25 04:01
uninstall.sh
3.05
KB
-r-xr-xr-x
2025-02-25 04:01
Save
Rename
#!/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!"