Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
CyberCP /
public /
static /
admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
SelectBox.js
4.42
KB
-rw-r--r--
SelectFilter2.js
14.93
KB
-rw-r--r--
actions.js
7.69
KB
-rw-r--r--
autocomplete.js
1.04
KB
-rw-r--r--
calendar.js
8.27
KB
-rw-r--r--
cancel.js
884
B
-rw-r--r--
change_form.js
606
B
-rw-r--r--
collapse.js
1.76
KB
-rw-r--r--
core.js
5.55
KB
-rw-r--r--
filters.js
978
B
-rw-r--r--
inlines.js
15.16
KB
-rw-r--r--
jquery.init.js
347
B
-rw-r--r--
nav_sidebar.js
2.99
KB
-rw-r--r--
popup_response.js
551
B
-rw-r--r--
prepopulate.js
1.5
KB
-rw-r--r--
prepopulate_init.js
586
B
-rw-r--r--
theme.js
1.9
KB
-rw-r--r--
urlify.js
7.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : collapse.js
/*global gettext*/ 'use strict'; { window.addEventListener('load', function() { // Add anchor tag for Show/Hide link const fieldsets = document.querySelectorAll('fieldset.collapse'); for (const [i, elem] of fieldsets.entries()) { // Don't hide if fields in this fieldset have errors if (elem.querySelectorAll('div.errors, ul.errorlist').length === 0) { elem.classList.add('collapsed'); const h2 = elem.querySelector('h2'); const link = document.createElement('a'); link.id = 'fieldsetcollapser' + i; link.className = 'collapse-toggle'; link.href = '#'; link.textContent = gettext('Show'); h2.appendChild(document.createTextNode(' (')); h2.appendChild(link); h2.appendChild(document.createTextNode(')')); } } // Add toggle to hide/show anchor tag const toggleFunc = function(ev) { if (ev.target.matches('.collapse-toggle')) { ev.preventDefault(); ev.stopPropagation(); const fieldset = ev.target.closest('fieldset'); if (fieldset.classList.contains('collapsed')) { // Show ev.target.textContent = gettext('Hide'); fieldset.classList.remove('collapsed'); } else { // Hide ev.target.textContent = gettext('Show'); fieldset.classList.add('collapsed'); } } }; document.querySelectorAll('fieldset.module').forEach(function(el) { el.addEventListener('click', toggleFunc); }); }); }
Close