Linux server1.hosting4iran.com 4.18.0-553.123.2.el8_10.x86_64 #1 SMP Thu May 7 15:28:41 EDT 2026 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.67
Domains : 318 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
.build-id /
03 /
Delete
Unzip
Name
Size
Permission
Date
Action
168605b12625fa1db502db5bfb795a016e38f1
73.25
KB
-rwxr-xr-x
2023-10-14 18:54
16f4b542e659481c79f8fc812f4bbb34acc6fa
11.77
KB
-rwxr-xr-x
2026-05-26 09:39
252dc20769eb089c68ddb19cec83d250342aea
36.86
KB
-rwx------
2025-12-17 18:54
2d0a99ca0fdd79a1bacbc885484f80f841f435
19.75
KB
-rwxr-xr-x
2024-03-07 11:39
325bef58ac04d1798ff881584ada879ef681e8
413.86
KB
-rwxr-xr-x
2021-10-08 19:17
398e7c731562393bf9700b9da2c046091852ab
19.86
KB
-rwxr-xr-x
2026-05-26 09:39
3a5f77508e88da198679d13bc5019d8e964a4e
39.8
KB
-rwxr-xr-x
2026-05-18 18:11
4f6661580b56efd5fdb947d13972a331599430
7.56
KB
-rwxr-xr-x
2025-07-01 20:46
5d1b6925eebde3d87a83f1eaca71f6f93f1284
127.35
KB
-rwxr-xr-x
2026-05-28 14:05
6180ddfa1aa2dd62ebf152d637eacd5f2f86bd
11.86
KB
-rwxr-xr-x
2022-10-08 11:39
72558753f5995a908d2d90d4690704360b5b4e
325.49
KB
-rwxr-xr-x
2026-05-04 20:25
9b100c3f15fcb22cded043d1b9474b36d77ee0
1.82
KB
-rwxr-xr-x
2026-05-27 07:52
9c7a677e093865b9a91476664492bc5c03a294
587.23
KB
-rwxr-xr-x
2022-10-08 11:39
b1f86dc5a2f0d143907c5c7edac4014d595f89
425.19
KB
-rwxr-xr-x
2026-02-10 17:24
bde58e266cb78fc6610fc5f039164c9e23ecb2
11.88
KB
-rwxr-xr-x
2024-04-10 04:58
c02e50575d5cf62f4d21059ebd4f1a51100bfb
15.5
KB
-rwxr-xr-x
2025-04-01 13:15
c7187f0fb72501aa0d05547d2c6de698523596
349.6
KB
-rwxr-xr-x
2025-03-11 09:44
da89fbde39757119796226534b9a15928ef977
53.09
KB
-rwxr-xr-x
2026-05-26 09:39
Save
Rename
#!/bin/sh ARGS="$@" ARG1="$1" LSWS_HOME=/usr/local/lsws APACHE_BIN=/usr/sbin/httpd CTRL_APACHE=0 APACHE=/usr/sbin/httpd_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