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 /
system /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
fields
[ DIR ]
drwxr-xr-x
core-es5.js
25.55
KB
-rw----r--
core-es5.min.js
6.93
KB
-rw----r--
core-es5.min.js.gz
2.89
KB
-rw----r--
core.js
24.17
KB
-rw----r--
core.min.js
7.16
KB
-rw----r--
core.min.js.gz
2.96
KB
-rw----r--
draggable-es5.js
5.98
KB
-rw----r--
draggable-es5.min.js
2.07
KB
-rw----r--
draggable-es5.min.js.gz
878
B
-rw----r--
draggable.js
5.54
KB
-rw----r--
draggable.min.js
2.32
KB
-rw----r--
draggable.min.js.gz
908
B
-rw----r--
highlight-es5.js
69.69
KB
-rw----r--
highlight-es5.min.js
15.6
KB
-rw----r--
highlight-es5.min.js.gz
5.48
KB
-rw----r--
highlight.js
61.41
KB
-rw----r--
highlight.min.js
14.13
KB
-rw----r--
highlight.min.js.gz
5.23
KB
-rw----r--
joomla-core-loader-es5.js
8.27
KB
-rw----r--
joomla-core-loader-es5.min.js
5.35
KB
-rw----r--
joomla-core-loader-es5.min.js....
1.86
KB
-rw----r--
joomla-core-loader.js
4.31
KB
-rw----r--
joomla-core-loader.min.js
3.66
KB
-rw----r--
joomla-core-loader.min.js.gz
1.14
KB
-rw----r--
joomla-hidden-mail-es5.js
5.3
KB
-rw----r--
joomla-hidden-mail-es5.min.js
2.65
KB
-rw----r--
joomla-hidden-mail-es5.min.js....
1.1
KB
-rw----r--
joomla-hidden-mail.js
2.14
KB
-rw----r--
joomla-hidden-mail.min.js
1.32
KB
-rw----r--
joomla-hidden-mail.min.js.gz
595
B
-rw----r--
joomla-toolbar-button-es5.js
7.28
KB
-rw----r--
joomla-toolbar-button-es5.min....
3.46
KB
-rw----r--
joomla-toolbar-button-es5.min....
1.34
KB
-rw----r--
joomla-toolbar-button.js
3.07
KB
-rw----r--
joomla-toolbar-button.min.js
1.69
KB
-rw----r--
joomla-toolbar-button.min.js.g...
662
B
-rw----r--
keepalive-es5.js
1.53
KB
-rw----r--
keepalive-es5.min.js
599
B
-rw----r--
keepalive-es5.min.js.gz
382
B
-rw----r--
keepalive.js
1.4
KB
-rw----r--
keepalive.min.js
564
B
-rw----r--
keepalive.min.js.gz
366
B
-rw----r--
messages-es5.js
16.8
KB
-rw----r--
messages-es5.min.js
7.89
KB
-rw----r--
messages-es5.min.js.gz
2.69
KB
-rw----r--
messages.js
10.29
KB
-rw----r--
messages.min.js
5.29
KB
-rw----r--
messages.min.js.gz
1.66
KB
-rw----r--
multiselect-es5.js
4.5
KB
-rw----r--
multiselect-es5.min.js
2.08
KB
-rw----r--
multiselect-es5.min.js.gz
711
B
-rw----r--
multiselect.js
3.91
KB
-rw----r--
multiselect.min.js
1.95
KB
-rw----r--
multiselect.min.js.gz
674
B
-rw----r--
searchtools-es5.js
19.27
KB
-rw----r--
searchtools-es5.min.js
10.08
KB
-rw----r--
searchtools-es5.min.js.gz
2.45
KB
-rw----r--
searchtools.js
17.46
KB
-rw----r--
searchtools.min.js
9.75
KB
-rw----r--
searchtools.min.js.gz
2.41
KB
-rw----r--
showon-es5.js
9.43
KB
-rw----r--
showon-es5.min.js
2.95
KB
-rw----r--
showon-es5.min.js.gz
1.02
KB
-rw----r--
showon.js
8.6
KB
-rw----r--
showon.min.js
2.79
KB
-rw----r--
showon.min.js.gz
1006
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : draggable.js
/** * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ // The container where the draggable will be enabled let url; let direction; let isNested; let dragElementIndex; let dropElementIndex; let container = document.querySelector('.js-draggable'); if (container) { /** The script expects a form with a class js-form * A table with the tbody with a class js-draggable * with a data-url with the ajax request end point and * with a data-direction for asc/desc */ url = container.dataset.url; direction = container.dataset.direction; isNested = container.dataset.nested; } else if (Joomla.getOptions('draggable-list')) { const options = Joomla.getOptions('draggable-list'); container = document.querySelector(options.id); /** * This is here to make the transition to new forms easier. */ if (!container.classList.contains('js-draggable')) { container.classList.add('js-draggable'); } ({ url } = options); ({ direction } = options); isNested = options.nested; } if (container) { // IOS 10 BUG document.addEventListener('touchstart', () => {}, false); const getOrderData = (rows, inputRows, dragIndex, dropIndex) => { let i; const result = []; // Element is moved down if (dragIndex < dropIndex) { rows[dropIndex].setAttribute('value', rows[dropIndex - 1].value); for (i = dragIndex; i < dropIndex; i += 1) { if (direction === 'asc') { rows[i].setAttribute('value', parseInt(rows[i].value, 10) - 1); } else { rows[i].setAttribute('value', parseInt(rows[i].value, 10) + 1); } } } else { // Element is moved up rows[dropIndex].setAttribute('value', rows[dropIndex + 1].value); rows[dropIndex].value = rows[dropIndex + 1].value; for (i = dropIndex + 1; i <= dragIndex; i += 1) { if (direction === 'asc') { rows[i].value = parseInt(rows[i].value, 10) + 1; } else { rows[i].value = parseInt(rows[i].value, 10) - 1; } } } for (i = 0; i < rows.length - 1; i += 1) { result.push(`order[]=${encodeURIComponent(rows[i].value)}`); result.push(`cid[]=${encodeURIComponent(inputRows[i].value)}`); } return result; }; const rearrangeChildren = $parent => { if (!$parent.dataset.itemId) { return; } const parentId = $parent.dataset.itemId; // Get children list. Each child row should have // an attribute data-parents=" 1 2 3" where the number is id of parent const $children = container.querySelectorAll(`tr[data-parents~="${parentId}"]`); if ($children.length) { $parent.after(...$children); } }; const saveTheOrder = el => { let orderSelector; let inputSelector; let rowSelector; const groupId = el.dataset.draggableGroup; if (groupId) { rowSelector = `tr[data-draggable-group="${groupId}"]`; orderSelector = `[data-draggable-group="${groupId}"] [name="order[]"]`; inputSelector = `[data-draggable-group="${groupId}"] [name="cid[]"]`; } else { rowSelector = 'tr'; orderSelector = '[name="order[]"]'; inputSelector = '[name="cid[]"]'; } const rowElements = [].slice.call(container.querySelectorAll(rowSelector)); const rows = [].slice.call(container.querySelectorAll(orderSelector)); const inputRows = [].slice.call(container.querySelectorAll(inputSelector)); dropElementIndex = rowElements.indexOf(el); if (url) { // Detach task field if exists const task = document.querySelector('[name="task"]'); // Detach task field if exists if (task) { task.setAttribute('name', 'some__Temporary__Name__'); } // Prepare the options const ajaxOptions = { url, method: 'POST', data: getOrderData(rows, inputRows, dragElementIndex, dropElementIndex).join('&'), perform: true }; Joomla.request(ajaxOptions); // Re-Append original task field if (task) { task.setAttribute('name', 'task'); } } // Update positions for a children of the moved item rearrangeChildren(el); }; // eslint-disable-next-line no-undef dragula([container], { // Y axis is considered when determining where an element would be dropped direction: 'vertical', // elements are moved by default, not copied copy: false, // elements in copy-source containers can be reordered // copySortSource: true, // spilling will put the element back where it was dragged from, if this is true revertOnSpill: true, // spilling will `.remove` the element, if this is true // removeOnSpill: false, accepts(el, target, source, sibling) { if (isNested) { if (sibling !== null) { return sibling.dataset.draggableGroup && sibling.dataset.draggableGroup === el.dataset.draggableGroup; } return sibling === null || sibling && sibling.tagName.toLowerCase() === 'tr'; } return sibling === null || sibling && sibling.tagName.toLowerCase() === 'tr'; }, mirrorContainer: container }).on('drag', el => { let rowSelector; const groupId = el.dataset.draggableGroup; if (groupId) { rowSelector = `tr[data-draggable-group="${groupId}"]`; } else { rowSelector = 'tr'; } const rowElements = [].slice.call(container.querySelectorAll(rowSelector)); dragElementIndex = rowElements.indexOf(el); }).on('drop', el => { saveTheOrder(el); }); }
Close