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_categories /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
shared-categories-accordion-es...
1.5
KB
-rw----r--
shared-categories-accordion-es...
740
B
-rw----r--
shared-categories-accordion-es...
416
B
-rw----r--
shared-categories-accordion.js
1.35
KB
-rw----r--
shared-categories-accordion.mi...
803
B
-rw----r--
shared-categories-accordion.mi...
432
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : shared-categories-accordion.js
/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ if (!Joomla || !Joomla.Text) { throw new Error('core.js was not properly initialised'); } // Selectors used by this script const buttonsSelector = '[id^=category-btn-]'; /** * Handle the category toggle button click event * @param event */ const handleCategoryToggleButtonClick = ({ currentTarget }) => { const button = currentTarget; const icon = button.querySelector('span'); // Toggle icon class icon.classList.toggle('icon-plus'); icon.classList.toggle('icon-minus'); // Toggle aria label, aria-expanded const ariaLabel = button.getAttribute('aria-label'); const ariaExpanded = button.getAttribute('aria-expanded'); button.setAttribute('aria-label', ariaLabel === Joomla.Text._('JGLOBAL_EXPAND_CATEGORIES') ? Joomla.Text._('JGLOBAL_COLLAPSE_CATEGORIES') : Joomla.Text._('JGLOBAL_EXPAND_CATEGORIES')); button.setAttribute('aria-expanded', ariaExpanded === 'false' ? 'true' : 'false'); const { categoryId } = button.dataset; const target = document.getElementById(`category-${categoryId}`); target.toggleAttribute('hidden'); }; Array.from(document.querySelectorAll(buttonsSelector)).forEach(button => { button.addEventListener('click', handleCategoryToggleButtonClick); });
Close