Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
vicas-dev /
static /
admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
SelectBox.js
4.16
KB
-rw-r--r--
SelectFilter2.js
12.06
KB
-rw-r--r--
actions.js
6.62
KB
-rw-r--r--
actions.min.js
3.16
KB
-rw-r--r--
autocomplete.js
1.1
KB
-rw-r--r--
calendar.js
7.61
KB
-rw-r--r--
cancel.js
857
B
-rw-r--r--
change_form.js
606
B
-rw-r--r--
collapse.js
1.76
KB
-rw-r--r--
collapse.min.js
906
B
-rw-r--r--
core.js
5.29
KB
-rw-r--r--
inlines.js
14.87
KB
-rw-r--r--
inlines.min.js
5.18
KB
-rw-r--r--
jquery.init.js
347
B
-rw-r--r--
nav_sidebar.js
1.33
KB
-rw-r--r--
popup_response.js
551
B
-rw-r--r--
prepopulate.js
1.5
KB
-rw-r--r--
prepopulate.min.js
388
B
-rw-r--r--
prepopulate_init.js
492
B
-rw-r--r--
urlify.js
8.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SelectBox.js
'use strict'; { const SelectBox = { cache: {}, init: function(id) { const box = document.getElementById(id); SelectBox.cache[id] = []; const cache = SelectBox.cache[id]; for (const node of box.options) { cache.push({value: node.value, text: node.text, displayed: 1}); } }, redisplay: function(id) { // Repopulate HTML select box from cache const box = document.getElementById(id); box.innerHTML = ''; for (const node of SelectBox.cache[id]) { if (node.displayed) { const new_option = new Option(node.text, node.value, false, false); // Shows a tooltip when hovering over the option new_option.title = node.text; box.appendChild(new_option); } } }, filter: function(id, text) { // Redisplay the HTML select box, displaying only the choices containing ALL // the words in text. (It's an AND search.) const tokens = text.toLowerCase().split(/\s+/); for (const node of SelectBox.cache[id]) { node.displayed = 1; const node_text = node.text.toLowerCase(); for (const token of tokens) { if (node_text.indexOf(token) === -1) { node.displayed = 0; break; // Once the first token isn't found we're done } } } SelectBox.redisplay(id); }, delete_from_cache: function(id, value) { let delete_index = null; const cache = SelectBox.cache[id]; for (const [i, node] of cache.entries()) { if (node.value === value) { delete_index = i; break; } } cache.splice(delete_index, 1); }, add_to_cache: function(id, option) { SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1}); }, cache_contains: function(id, value) { // Check if an item is contained in the cache for (const node of SelectBox.cache[id]) { if (node.value === value) { return true; } } return false; }, move: function(from, to) { const from_box = document.getElementById(from); for (const option of from_box.options) { const option_value = option.value; if (option.selected && SelectBox.cache_contains(from, option_value)) { SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); SelectBox.delete_from_cache(from, option_value); } } SelectBox.redisplay(from); SelectBox.redisplay(to); }, move_all: function(from, to) { const from_box = document.getElementById(from); for (const option of from_box.options) { const option_value = option.value; if (SelectBox.cache_contains(from, option_value)) { SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); SelectBox.delete_from_cache(from, option_value); } } SelectBox.redisplay(from); SelectBox.redisplay(to); }, sort: function(id) { SelectBox.cache[id].sort(function(a, b) { a = a.text.toLowerCase(); b = b.text.toLowerCase(); if (a > b) { return 1; } if (a < b) { return -1; } return 0; } ); }, select_all: function(id) { const box = document.getElementById(id); for (const option of box.options) { option.selected = true; } } }; window.SelectBox = SelectBox; }
Close