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.153
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 : ui-toasts.js
/** * UI Toasts */ 'use strict'; (function () { // Bootstrap toasts example // -------------------------------------------------------------------- const toastPlacementExample = document.querySelector('.toast-placement-ex'), toastPlacementBtn = document.querySelector('#showToastPlacement'); let selectedType, selectedPlacement, toastPlacement; // Dispose toast when open another function toastDispose(toast) { if (toast && toast._element !== null) { if (toastPlacementExample) { toastPlacementExample.querySelectorAll('i[class^="ri-"]').forEach(function (element) { element.classList.remove(selectedType); }); DOMTokenList.prototype.remove.apply(toastPlacementExample.classList, selectedPlacement); } toast.dispose(); } } // Placement Button click if (toastPlacementBtn) { toastPlacementBtn.onclick = function () { if (toastPlacement) { toastDispose(toastPlacement); } selectedType = document.querySelector('#selectTypeOpt').value; selectedPlacement = document.querySelector('#selectPlacement').value.split(' '); toastPlacementExample.querySelectorAll('i[class^="ri-"]').forEach(function (element) { element.classList.add(selectedType); }); DOMTokenList.prototype.add.apply(toastPlacementExample.classList, selectedPlacement); toastPlacement = new bootstrap.Toast(toastPlacementExample); toastPlacement.show(); }; } })();
Close