Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
themes /
alpha /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accordion.js
687
B
-rw-r--r--
buttons.js
858
B
-rw-r--r--
customizer.js
1018
B
-rw-r--r--
navigation.js
2.22
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
slider.js
1008
B
-rw-r--r--
tabs.js
791
B
-rw-r--r--
video-popup.js
1.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : navigation.js
/** * File navigation.js. * * Handles toggling the navigation menu for small screens and enables TAB key * navigation support for dropdown menus. */ ( function () { const html = document.documentElement; const siteHeader = document.getElementById( "masthead" ); const toplineNav = document.getElementById( "topline-nav" ); const siteNavigation = document.getElementById( "site-navigation" ); const page = document.getElementById( "page" ); const menuToggle = document.getElementById( "menu-toggle" ); const menuClose = document.getElementById( "menu-close" ); var isDesktop = true; const initialScroll = window.scrollY; const adminBar = document.getElementById( "wpadminbar" ); const adminBarHeight = adminBar ? adminBar.getBoundingClientRect().height : 0; const siteHeaderInitialTop = siteHeader.getBoundingClientRect().top + initialScroll; const branding = document.getElementById( "branding" ); const menuBackground = document.createElement( "div" ); menuBackground.classList.add( "menu-background" ); const handleFixedHeader = function () { const currentScroll = window.scrollY; if ( currentScroll + adminBarHeight > siteHeaderInitialTop ) { siteHeader.classList.add( "fixed" ); } else { siteHeader.classList.remove( "fixed" ); } }; if ( ! siteHeader.classList.contains( "splash" ) ) { window.addEventListener( "scroll", handleFixedHeader ); handleFixedHeader(); } const handleWindowResize = function () { const threshold = 1024; if ( window.innerWidth < threshold ) { if ( isDesktop === true ) { siteNavigation.appendChild( toplineNav ); isDesktop = false; } } else { if ( isDesktop === false ) { page.insertBefore( toplineNav, siteHeader ); isDesktop = true; } } }; window.addEventListener( "resize", handleWindowResize ); handleWindowResize(); menuToggle.addEventListener( "click", function ( e ) { e.preventDefault(); siteNavigation.classList.add( "on" ); html.classList.add( "nav-opened" ); branding.insertBefore( menuBackground, siteNavigation ); } ); menuClose.addEventListener( "click", function ( e ) { e.preventDefault(); siteNavigation.classList.remove( "on" ); html.classList.remove( "nav-opened" ); menuBackground.remove(); } ); } )();
Close