Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.139.86.62
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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-04-15 03:17
ap_lsws.sh
1.82
KB
-rwxr-xr-x
2025-05-09 14:54
ap_lsws.sh.in
1.82
KB
-r-xr-xr-x
2025-04-15 03:17
awstats_install.sh
2.06
KB
-r-xr-xr-x
2025-04-15 03:17
build_ap_wrapper.sh
624
B
-r-xr-xr-x
2025-04-15 03:17
chroot.sh
7.31
KB
-r-xr-xr-x
2025-04-15 03:17
cleancache.sh
1.46
KB
-r-xr-xr-x
2025-04-15 03:17
cleanlitemage.sh
2.4
KB
-r-xr-xr-x
2025-04-15 03:17
cp_switch_ws.sh
22.41
KB
-r-xr-xr-x
2025-04-15 03:17
cpanel_restart_httpd.in
732
B
-r-xr-xr-x
2025-04-15 03:17
create_admin_keypair.sh
336
B
-r-xr-xr-x
2025-04-15 03:17
enable_ruby_python_selector.sh
2.68
KB
-r-xr-xr-x
2025-04-15 03:17
fix_cagefs.sh
766
B
-r-xr-xr-x
2025-04-15 03:17
fp_install.sh
1.65
KB
-r-xr-xr-x
2025-04-15 03:17
gdb-bt
25
B
-rw-r--r--
2025-04-15 03:17
genjCryptionKeyPair.php
6.43
KB
-rw-r--r--
2025-04-15 03:17
gzipStatic.sh
272
B
-r-xr-xr-x
2025-04-15 03:17
htpasswd.php
103
B
-rw-r--r--
2025-04-15 03:17
lscmctl
15.3
KB
-rwxrwxr-x
2025-04-30 22:14
lshttpd.service
660
B
-r-xr-xr-x
2025-04-15 03:17
lsup.sh
5.65
KB
-r-xr-xr-x
2025-04-15 03:17
lsup6.sh
5.65
KB
-r-xr-xr-x
2025-04-15 03:17
lsws.rc
1.78
KB
-r-xr-xr-x
2025-04-15 03:17
lsws.rc.gentoo
441
B
-r-xr-xr-x
2025-04-15 03:17
mgr_ver.sh
1.93
KB
-r-xr-xr-x
2025-04-15 03:17
php.ini
37.11
KB
-rw-r--r--
2025-04-15 03:17
purge_cache_by_url
3.23
KB
-r-xr-xr-x
2025-04-15 03:17
rc-inst.sh
5.99
KB
-r-xr-xr-x
2025-04-15 03:17
rc-uninst.sh
4.61
KB
-r-xr-xr-x
2025-04-15 03:17
uninstall.sh
2.9
KB
-r-xr-xr-x
2025-04-15 03:17
update.sh
1.85
KB
-r-xr-xr-x
2025-04-15 03:17
Save
Rename
#!/bin/sh CURDIR=`dirname "$0"` cd $CURDIR CURDIR=`pwd` INST_USER=`id` INST_UID=`expr "$INST_USER" : 'uid=\(.*\)(.*) gid=.*'` INST_USER=`expr "$INST_USER" : 'uid=.*(\(.*\)) gid=.*'` if [ $INST_UID != "0" ]; then cat <<EOF [ERROR] Only root user can uninstall the rc script! EOF exit 1 fi if [ "x`uname -s`" = "xDarwin" ]; then STARTUP_ITEM=/System/Library/StartupItems/lsws if [ -d ${STARTUP_ITEM} ]; then rm -rf ${STARTUP_ITEM} echo "[OK] The startup script has been successfully uninstalled!" fi exit 0 fi AP_PROC=httpd if [ -e /etc/debian_version ] && [ ! -d /usr/local/cpanel ]; then AP_PROC=apache2 fi if [ "x`uname -s`" = "xFreeBSD" ]; then if [ -e "/etc/rc.d/lsws" ]; then rm -f /etc/rc.d/lsws echo "[OK] The startup script has been successfully uninstalled!" fi if [ -e "/usr/local/etc/rc.d/lsws.sh" ]; then rm -f /usr/local/etc/rc.d/lsws.sh fi if [ -e "/etc/rc.d/${AP_PROC}.ls_bak" ] ; then mv -f /etc/rc.d/${AP_PROC}.ls_bak /etc/rc.d/${AP_PROC} fi if [ -e "/usr/local/etc/rc.d/${AP_PROC}.ls_bak" ] ; then mv -f /usr/local/etc/rc.d/${AP_PROC}.ls_bak /usr/local/etc/rc.d/${AP_PROC} fi exit 0 fi INIT_DIR="" 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 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 if [ -e ${SYSTEMDDIR}/${AP_PROC}.service.ls_bak ] ; then mv -f ${SYSTEMDDIR}/${AP_PROC}.service.ls_bak ${SYSTEMDDIR}/${AP_PROC}.service systemctl enable ${AP_PROC}.service fi systemctl daemon-reload echo "[OK] The startup script has been successfully uninstalled from systemd!" fi done # clean from both systemd and init.d if [ "${INIT_DIR}" = "" ]; then exit 0 fi if [ -f "/etc/gentoo-release" ]; then if [ -e ${INIT_DIR}/lsws ] ; then rc-update del lsws default rm -f ${INIT_DIR}/lsws echo "[OK] The startup script has been successfully uninstalled!" fi exit 0 fi if [ -e /etc/debian_version ]; then if [ -e ${INIT_DIR}/lsws ] ; then update-rc.d lsws remove rm -f ${INIT_DIR}/lsws echo "[OK] The startup script has been successfully uninstalled!" if [ -e "${INIT_DIR}/${AP_PROC}.ls_bak" ] ; then mv -f ${INIT_DIR}/${AP_PROC}.ls_bak ${INIT_DIR}/${AP_PROC} fi fi exit 0 fi if [ -f "${INIT_DIR}/lsws" ]; then rm -f ${INIT_DIR}/lsws echo "[OK] The startup script has been successfully uninstalled!" if [ -e "${INIT_DIR}/${AP_PROC}.ls_bak" ] ; then mv -f ${INIT_DIR}/${AP_PROC}.ls_bak ${INIT_DIR}/${AP_PROC} fi 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 if [ -e "${INIT_BASE_DIR}/runlevel/default/S88lsws" ] ; then rm -f ${INIT_BASE_DIR}/runlevel/default/S88lsws fi if [ -e "${INIT_BASE_DIR}/runlevel/default/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/runlevel/default/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc2.d" ]; then if [ -e "${INIT_BASE_DIR}/rc2.d/S88lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc2.d/S88lsws fi if [ -e "${INIT_BASE_DIR}/rc2.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc2.d/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc3.d" ]; then if [ -e "${INIT_BASE_DIR}/rc3.d/S88lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc3.d/S88lsws fi if [ -e "${INIT_BASE_DIR}/rc3.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc3.d/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc5.d" ]; then if [ -e "${INIT_BASE_DIR}/rc5.d/S88lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc5.d/S88lsws fi if [ -e "${INIT_BASE_DIR}/rc5.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc5.d/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc0.d" ]; then if [ -e "${INIT_BASE_DIR}/rc0.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc0.d/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc1.d" ]; then if [ -e "${INIT_BASE_DIR}/rc1.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc1.d/K12lsws fi fi if [ -d "${INIT_BASE_DIR}/rc6.d" ]; then if [ -e "${INIT_BASE_DIR}/rc6.d/K12lsws" ] ; then rm -f ${INIT_BASE_DIR}/rc6.d/K12lsws fi fi exit 0