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_config /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
config-default-es5.js
1.13
KB
-rw----r--
config-default-es5.min.js
437
B
-rw----r--
config-default-es5.min.js.gz
279
B
-rw----r--
config-default.js
989
B
-rw----r--
config-default.min.js
374
B
-rw----r--
config-default.min.js.gz
256
B
-rw----r--
config-filters-es5.js
1.29
KB
-rw----r--
config-filters-es5.min.js
643
B
-rw----r--
config-filters-es5.min.js.gz
329
B
-rw----r--
config-filters.js
1.1
KB
-rw----r--
config-filters.min.js
636
B
-rw----r--
config-filters.min.js.gz
317
B
-rw----r--
modules-default-es5.js
1.13
KB
-rw----r--
modules-default-es5.min.js
438
B
-rw----r--
modules-default-es5.min.js.gz
280
B
-rw----r--
modules-default.js
990
B
-rw----r--
modules-default.min.js
375
B
-rw----r--
modules-default.min.js.gz
259
B
-rw----r--
templates-default-es5.js
1.13
KB
-rw----r--
templates-default-es5.min.js
440
B
-rw----r--
templates-default-es5.min.js.g...
281
B
-rw----r--
templates-default.js
992
B
-rw----r--
templates-default.min.js
377
B
-rw----r--
templates-default.min.js.gz
261
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config-filters.js
/** * @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ const recursiveApplyChanges = id => { const childs = [].slice.call(document.querySelectorAll(`#filter-config select[data-parent="${id}"]`)); childs.map(child => { recursiveApplyChanges(child.dataset.id); child.value = 'NONE'; return child; }); }; const applyChanges = event => { const currentElement = event.currentTarget; const currentFilter = currentElement.options[currentElement.selectedIndex].value; if (currentFilter === 'NONE') { const childs = [].slice.call(document.querySelectorAll(`#filter-config select[data-parent="${currentElement.dataset.id}"]`)); if (childs.length && window.confirm(Joomla.Text._('COM_CONFIG_TEXT_FILTERS_NOTE'))) { childs.map(child => { recursiveApplyChanges(child.dataset.id); child.value = 'NONE'; return child; }); } } }; [].slice.call(document.querySelectorAll('#filter-config select')).map(select => select.addEventListener('change', applyChanges));
Close