Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
lsws /
lsws-6.1.2 /
admin /
misc /
Delete
Unzip
Name
Size
Permission
Date
Action
RSAKeyImport.php
5.33
KB
-rw-r--r--
2013-12-22 23:42
admpass.sh
1.17
KB
-rwxr-xr-x
2015-09-01 14:03
ap_lsws.sh.in
1.82
KB
-rwxr-xr-x
2019-10-02 15:23
awstats_install.sh
2.06
KB
-rwxr-xr-x
2019-01-09 15:40
build_ap_wrapper.sh
624
B
-rwxr-xr-x
2013-12-22 23:42
chroot.sh
7.31
KB
-rwxr-xr-x
2023-06-16 14:32
cleancache.sh
1.46
KB
-rw-r--r--
2021-07-13 22:21
cleanlitemage.sh
2.4
KB
-rw-r--r--
2016-02-15 17:49
cp_switch_ws.sh
22.12
KB
-rw-r--r--
2023-03-02 20:05
cpanel_restart_httpd.in
732
B
-rwxr-xr-x
2013-12-22 23:42
create_admin_keypair.sh
336
B
-rwxr-xr-x
2015-09-01 14:03
enable_ruby_python_selector.sh
4.12
KB
-rwxr-xr-x
2023-06-09 17:15
fix_cagefs.sh
766
B
-rwxr-xr-x
2022-01-14 21:16
fp_install.sh
1.65
KB
-rwxr-xr-x
2016-11-22 15:20
gdb-bt
25
B
-rw-r--r--
2016-06-26 22:16
genjCryptionKeyPair.php
6.43
KB
-rw-r--r--
2015-09-01 14:03
gzipStatic.sh
272
B
-rwxr-xr-x
2013-12-22 23:42
htpasswd.php
103
B
-rw-r--r--
2023-02-17 17:37
lscmctl
14.58
KB
-rwxr-xr-x
2021-12-08 15:14
lshttpd.service
658
B
-rw-r--r--
2026-09-04 10:51
lshttpd.service.in
607
B
-rw-r--r--
2022-11-29 18:30
lsup.sh
2.8
KB
-rwxr-xr-x
2013-12-22 23:42
lsup5.sh
4.17
KB
-rwxr-xr-x
2019-02-26 18:00
lsup5v2.sh
5.63
KB
-rw-r--r--
2020-06-18 22:27
lsup6.sh
5.65
KB
-rwxr-xr-x
2022-12-30 17:26
lsws.rc
1.78
KB
-rw-r--r--
2026-09-04 10:51
lsws.rc.gentoo
441
B
-rw-r--r--
2026-09-04 10:51
lsws.rc.gentoo.in
390
B
-rw-r--r--
2013-12-22 23:42
lsws.rc.in
1.77
KB
-rw-r--r--
2017-10-26 18:15
mgr_ver.sh
1.93
KB
-rwxr-xr-x
2018-08-27 16:46
php.ini
37.11
KB
-rw-r--r--
2017-10-26 18:15
purge_cache_by_url
3.23
KB
-rwxr-xr-x
2018-12-13 02:48
rc-inst.sh
5.99
KB
-rwxr-xr-x
2022-12-12 22:18
rc-uninst.sh
4.61
KB
-rwxr-xr-x
2022-12-12 22:18
uninstall.sh
2.9
KB
-rwxr-xr-x
2020-02-13 21:58
update.sh
1.85
KB
-rwxr-xr-x
2019-09-30 22:24
Save
Rename
#!/bin/bash RUBY_LSAPI_VER="5\\." WSGI_LSAPI_VER=2.1 alt_ruby_install() { # $1 = ruby version if [ "x$1" != "x" ] && [ -d /opt/alt/ruby$1/bin/ ]; then echo "Install ruby-lsapi rack gem for alt-ruby $1" yum install -y alt-ruby$1-rubygem-lsapi alt-ruby$1-rubygem-rack /opt/alt/ruby$1/bin/gem list ruby-lsapi | grep $RUBY_LSAPI_VER >/dev/null if [ $? -ne 0 ]; then echo "Alt-ruby $1 misses ruby-lsapi 5.x gem, install latest version." /opt/alt/ruby$1/bin/gem install ruby-lsapi fi echo "" fi } plesk_ruby_install() { # $1 = ruby version # $2 = rack gem version if [ "x$1" != "x" ] && [ -d $1 ]; then echo "Install ruby-lsapi gem for Plesk ruby $1" $1/bin/gem install ruby-lsapi if [ "x$2" != "x" ]; then $1/bin/gem install rack -v=$2 else $1/bin/gem install rack -v=2.2.4 fi echo "" fi } for VER in '18' '19' '20' '21' '22' '23' '24' '25' '26' '27' '30' '31' '32' '33' do alt_ruby_install $VER done if [ -d /opt/plesk/ruby ]; then yum install -y gcc gmp-devel cd /opt/plesk/ruby for VER in '1.9.3' '2.0.0' '2.1.10' do plesk_ruby_install $VER 1.6.4 done for VER in '2.2.10' '2.3.8' '2.4.10' '2.5.8' '2.6.6' '2.7.1' do plesk_ruby_install $VER done fi rm wsgi-lsapi-$WSGI_LSAPI_VER.tgz rm -rf wsgi-lsapi-$WSGI_LSAPI_VER wget http://www.litespeedtech.com/packages/lsapi/wsgi-lsapi-$WSGI_LSAPI_VER.tgz tar xvfz wsgi-lsapi-$WSGI_LSAPI_VER.tgz cd wsgi-lsapi-$WSGI_LSAPI_VER if [ -d /opt/alt/python27 ]; then echo "Install wsgi-lsapi for python 2.7" yum install -y alt-python27-wsgi-lsapi # /opt/alt/python27/bin/python configure.py # make 1>/dev/null 2>&1 # cp lswsgi /opt/alt/python27/bin/ # make clean fi if [ -d /opt/alt/python33 ]; then echo "Install wsgi-lsapi for python 3.3" yum install -y alt-python33-wsgi-lsapi fi if [ -d /opt/alt/python34 ]; then echo "Install wsgi-lsapi for python 3.4" yum install -y alt-python34-wsgi-lsapi fi if [ -d /opt/alt/python35 ]; then echo "Install wsgi-lsapi for python 3.5" yum install -y alt-python35-wsgi-lsapi fi if [ -d /opt/alt/python36 ]; then echo "Install wsgi-lsapi for python 3.6" yum install -y alt-python36-wsgi-lsapi fi if [ -d /opt/alt/python37 ]; then echo "Install wsgi-lsapi for python 3.7" yum install -y alt-python37-wsgi-lsapi fi if [ -d /opt/alt/python38 ]; then echo "Install wsgi-lsapi for python 3.8" yum install -y alt-python38-wsgi-lsapi if [ ! -f /opt/alt/python38/bin/lswsgi ]; then /opt/alt/python38/bin/python3 configure.py sed -i -e "s#/opt/rh/devtoolset-7/root/usr/bin/##" Makefile make 1>/dev/null 2>&1 cp lswsgi /opt/alt/python38/bin/ make clean fi fi if [ -d /opt/alt/python39 ]; then echo "Install wsgi-lsapi for python 3.9" yum install -y alt-python39-wsgi-lsapi if [ ! -f /opt/alt/python39/bin/lswsgi ]; then /opt/alt/python39/bin/python3 configure.py yum install devtoolset-7-toolchain # sed -i -e "s#/opt/rh/devtoolset-7/root/usr/bin/##" Makefile make 1>/dev/null 2>&1 cp lswsgi /opt/alt/python39/bin/ make clean fi fi if [ -d /opt/alt/python310 ]; then echo "Install wsgi-lsapi for python 3.10" yum install -y alt-python310-wsgi-lsapi if [ ! -f /opt/alt/python310/bin/lswsgi ]; then /opt/alt/python310/bin/python3 configure.py yum install devtoolset-7-toolchain # sed -i -e "s#/opt/rh/devtoolset-7/root/usr/bin/##" Makefile make 1>/dev/null 2>&1 cp lswsgi /opt/alt/python310/bin/ make clean fi fi if [ -d /opt/cpanel/ea-ruby27/ ]; then echo "Install ruby-lsapi for ea-ruby27" scl enable ea-ruby27 'gem install ruby-lsapi' scl enable ea-ruby27 'gem install rack -v=2.2.4' if [ ! -f /usr/local/lsws/fcgi-bin/ea-ruby27 ]; then cat >/usr/local/lsws/fcgi-bin/ea-ruby27 <<EOF #!/bin/sh . /opt/cpanel/ea-ruby27/enable /opt/cpanel/ea-ruby27/root/usr/bin/ruby \$@ EOF chmod a+x /usr/local/lsws/fcgi-bin/ea-ruby27 fi fi