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.154.250
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 : script.js
/*!----------------------------------------------------------------------------------- Template Name: Edmin Template URI: themes.pixelstrap.com/Edmin Description: This is Admin Template Author: Pixelstrap Author URI: https://themeforest.net/user/pixelstrap ----------------------------------------------------------------------------------- 01. Loader js 02. Tap to top js 03. Header DropDown Toggle js 04. Header search js 05. Dark Mode js 06. Bookmark js 07. Search menu dropdown js 08. Background Image js 09. Touchpin js 11. card-header cart close js */ (function () { const body = document.querySelector("body"); const HTML = document.querySelector("html"); /*===================== 01 Loader Js ==========================*/ $(".loader-wrapper").fadeOut("slow", function () { $(this).remove(); }); /*===================== 02 Tap to top js ==========================*/ const button = document.querySelector(".tap-top"); const displayButton = () => { window.addEventListener("scroll", () => { if (window.scrollY > 600) { button.style.display = "block"; } else { button.style.display = "none"; } }); }; const scrollToTop = () => { button.addEventListener("click", () => { window.scroll({ top: 0, left: 0, behavior: "smooth", }); console.log(event); }); }; displayButton(); scrollToTop(); /*===================== 03 Header DropDown Toggle ==========================*/ body.addEventListener("click", function (event) { const headerDropdownMenu = document.querySelectorAll(".custom-menu"); const dropdownEl = event.target.closest(".custom-dropdown"); const visible = dropdownEl ?.querySelector(".custom-menu") .classList.contains("show"); const dropdownMenuElement = event.target.closest(".custom-menu"); if (!dropdownMenuElement) { headerDropdownMenu.forEach((item) => { item.classList.remove("show"); }); } if (!dropdownEl) return; const dropdownMenu = dropdownEl.querySelector(".custom-menu"); if (!visible) dropdownMenu.classList.add("show"); }); /*===================== 04. Header search js ==========================*/ $(".search-mode").on("click", function (e) { $(".search-form").toggleClass("open"); e.preventDefault(); }); /*===================== 05. Dark Mode js ==========================*/ if (window.location.pathname.includes("layout-dark.html")) { $("html").attr("data-theme", "dark"); } else { $(".dark-mode").on("click", function () { const bodyModeDark = $("html").attr("data-theme") === "dark"; if (!window.location.pathname.includes("layout-dark.html")) { if (!bodyModeDark) { $(".dark-mode").addClass("active"); localStorage.setItem("mode", "dark"); $("html").attr("data-theme", "dark"); } else { $(".dark-mode").removeClass("active"); localStorage.setItem("mode", "light"); $("html").attr("data-theme", "light"); } } }); $("html").attr( "data-theme", localStorage.getItem("mode") ? localStorage.getItem("mode") : "light" ); $(".dark-mode").addClass( localStorage.getItem("mode") === "dark" ? "active" : " " ); } /*===================== 06. Bookmark js ==========================*/ let IconStar = document.querySelector(".icon-star"); if (IconStar === "starred") { IconStar.classList.remove("starred"); } /*===================== 08. Background Image js ==========================*/ $(".bg-center").parent().addClass("b-center"); $(".bg-img-cover").parent().addClass("bg-size"); $(".bg-img-cover").each(function () { var el = $(this), src = el.attr("src"), parent = el.parent(); parent.css({ "background-image": "url(" + src + ")", "background-size": "cover", "background-position": "center", display: "block", }); el.hide(); }); })(); /*===================== 09. Touchpin js ==========================*/ let getInputByClass = document.getElementsByClassName("input-touchspin"); (function () { Array.from(getInputByClass).forEach((elem, i) => { let inputData = elem.getAttribute("value"); let isIncrement = elem.parentNode.querySelectorAll(".increment-touchspin"); let isDecrement = elem.parentNode.querySelectorAll(".decrement-touchspin"); if (isIncrement) { isIncrement[0].addEventListener("click", () => { inputData++; elem.setAttribute("value", inputData); }); } if (isDecrement) { isDecrement[0].addEventListener("click", () => { if (inputData > 0) { inputData--; elem.setAttribute("value", inputData); } }); } }); })(); /*===================== 11. card-header cart close js ==========================*/ document.querySelectorAll(".cartbox .btn-close").forEach(function (element) { element.addEventListener("click", function (e) { var tets = this.parentNode.parentNode.classList.add("d-none"); console.log(tets); }); });
Close