shell bypass 403

GrazzMean Shell

: /home/gutlooks/public_html/assets/js/ [ drwxr-xr-x ]
Uname: Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software: Apache
PHP version: 8.3.32 [ PHP INFO ] PHP os: Linux
Server Ip: 163.227.92.254
Your Ip: 216.73.217.24
User: gutlooks (1003) | Group: gutlooks (1005)
Safe Mode: OFF
Disable Function:
exec,passthru,shell_exec,system

name : sticky-header.js
(function () {

    //CONFIGURATION
    var headerClassName = 'header-common'; //Class of your header element
    var stickyAfter = 150; //Show fixed header after this Y offset in px
    var header = document.getElementsByClassName(headerClassName)[0];
    // var clone = header.cloneNode(true);
    header.classList.add('clone');
    // header.parentElement.appendChild(clone);
    const header4LogoChange = document.querySelector('.header4LogoChange');

    var initializeHeader = function () {
        document
            .getElementsByClassName(headerClassName + ' clone')[0]
            .classList.add('initialized');
        return true;
    }
    window.onscroll = function () {
        var cl = document.body.classList;
        if (window.pageYOffset > stickyAfter) {
            initializeHeader()
            cl.add('sticky');

        } else {
            cl.remove('sticky');

        }
        if (!header4LogoChange) return
        if (header4LogoChange?.classList.contains("clone")) {
            const html = document.querySelector('html');
            const logo = header4LogoChange.querySelector(".logo");
            const logoSrc = logo.getAttribute("src");
            const logoWhite = "../assets/images/logos/logo-4-w.png"
            if (cl.contains("sticky") && html.classList.contains("dark") && logoSrc !== logoWhite) {
                logo.setAttribute("src", logoWhite);
            } else if (!cl.contains("sticky")) {
                logo.setAttribute("src", "../assets/images/logos/logo-4.png")
            }

        }
    }

})();
© 2026 GrazzMean