Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.107
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
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-04 10:22
ap_lsws.sh
1.82
KB
-rwxr-xr-x
2025-09-09 14:20
ap_lsws.sh.in
1.82
KB
-r-xr-xr-x
2025-02-04 10:22
awstats_install.sh
2.06
KB
-r-xr-xr-x
2025-02-04 10:22
build_ap_wrapper.sh
624
B
-r-xr-xr-x
2025-02-04 10:22
chroot.sh
7.31
KB
-r-xr-xr-x
2025-02-04 10:22
cleancache.sh
1.46
KB
-r-xr-xr-x
2025-02-04 10:22
cleanlitemage.sh
2.4
KB
-r-xr-xr-x
2025-02-04 10:22
cp_switch_ws.sh
22.41
KB
-r-xr-xr-x
2025-02-04 10:22
cpanel_restart_httpd.in
732
B
-r-xr-xr-x
2025-02-04 10:22
create_admin_keypair.sh
336
B
-r-xr-xr-x
2025-02-04 10:22
enable_ruby_python_selector.sh
2.68
KB
-r-xr-xr-x
2025-02-04 10:22
fix_cagefs.sh
766
B
-r-xr-xr-x
2025-02-04 10:22
fp_install.sh
1.65
KB
-r-xr-xr-x
2025-02-04 10:22
gdb-bt
25
B
-rw-r--r--
2025-02-04 10:22
genjCryptionKeyPair.php
6.43
KB
-rw-r--r--
2025-02-04 10:22
gzipStatic.sh
272
B
-r-xr-xr-x
2025-02-04 10:22
htpasswd.php
103
B
-rw-r--r--
2025-02-04 10:22
lscmctl
15.3
KB
-rwxrwxr-x
2025-04-30 22:14
lshttpd.service
660
B
-r-xr-xr-x
2025-02-04 10:22
lsup.sh
5.65
KB
-r-xr-xr-x
2025-02-04 10:22
lsup5v3.sh
5.63
KB
-r-xr-xr-x
2024-01-20 16:59
lsup6.sh
5.65
KB
-r-xr-xr-x
2025-02-04 10:22
lsws.rc
1.78
KB
-r-xr-xr-x
2025-02-04 10:22
lsws.rc.gentoo
441
B
-r-xr-xr-x
2025-02-04 10:22
mgr_ver.sh
1.93
KB
-r-xr-xr-x
2025-02-04 10:22
php.ini
37.11
KB
-rw-r--r--
2025-02-04 10:22
purge_cache_by_url
3.23
KB
-r-xr-xr-x
2025-02-04 10:22
rc-inst.sh
5.99
KB
-r-xr-xr-x
2025-02-04 10:22
rc-uninst.sh
4.61
KB
-r-xr-xr-x
2025-02-04 10:22
uninstall.sh
2.9
KB
-r-xr-xr-x
2025-02-04 10:22
update.sh
1.85
KB
-r-xr-xr-x
2025-02-04 10:22
Save
Rename
#!/bin/sh ARGS="$@" ARG1="$1" LSWS_HOME=%LSWS_HOME% APACHE_BIN=%APACHE_BIN% CTRL_APACHE=%CTRL_APACHE% APACHE=%APACHE_BIN%_ls_bak LSWS=$LSWS_HOME/bin/lswsctrl PARAM_LOG=$LSWS_HOME/logs/ap_cmd_param.log APACHE_STATE=$LSWS_HOME/admin/cgid/apache_state ulimit -v unlimited 2>/dev/null if [ ! -f $LSWS ]; then mv $APACHE $APACHE_BIN $APACHE_BIN "$@" exit $? fi echo "`date`: $@" 2>/dev/null >> $PARAM_LOG if [ "x$ARG1" = 'x-DSSL' ] || [ "x$ARG1" = 'x-DFOREGROUND' ]; then shift ARG1=$1 fi if [ "x$ARG1" = 'x' ]; then service lsws restart if [ "x$CTRL_APACHE" = "x1" ]; then $APACHE "$@" fi elif [ "x$ARG1" = 'x-k' ]; then ARG2=$2 case $ARG2 in start|startssl|sslstart|start-SSL) echo "START" > $APACHE_STATE service lsws restart ERR=$? if [ "x$CTRL_APACHE" = "x1" ]; then $APACHE "$@" fi exit $ERR ;; stop|graceful-stop) # never stop LSWS here, use "service lsws stop" instead # have to stop lsws or make cPanel belive apache is stopped, # otherwise cpanel will send signal "9" $LSWS stophttpd if [ "x$CTRL_APACHE" == "x1" ]; then $APACHE "$@" else echo "" fi ;; restart|graceful) echo "START" > $APACHE_STATE service lsws restart if [ "x$CTRL_APACHE" = "x1" ]; then $APACHE "$@" fi ;; *) $APACHE "$@" esac else if [ "x$ARG1" = "xuninstall" ]; then if [ "x$CTRL_APACHE" = "x0" ]; then service lsws stop sleep 1 fi mv $APACHE $APACHE_BIN $APACHE_BIN elif [ "x$ARG1" = "xinstall" ]; then if [ "x$CTRL_APACHE" = "x0" ]; then pkill `basename $APACHE_BIN` fi echo "START" > $APACHE_STATE service lsws start else $APACHE "$@" fi fi ERROR=$? exit $ERROR