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 : jquery.simplecolors.min.js
(function($){var SimpleColorPicker=function(element,options){this.select=$(element);this.options=$.extend({},$.fn.simplecolors.defaults,options);this.select.hide();var list="";$("option",this.select).each(function(){var option=$(this);var color=option.val();if(option.text()=="-")list+="<br />";else{var clss="simplecolors-swatch";if(color=="none"){clss+=" nocolor";color="transparent"}if(option.attr("selected"))clss+=" active";list+='<span class="'+clss+'"><span style="background-color: '+color+';" tabindex="0"></span></span>'}}); var color=this.select.val();var clss="simplecolors-swatch";if(color=="none"){clss+=" nocolor";color="transparent"}this.icon=$('<span class="'+clss+'"><span style="background-color: '+color+';" tabindex="0"></span></span>').insertAfter(this.select);this.icon.on("click",$.proxy(this.show,this));this.panel=$('<span class="simplecolors-panel"></span>').appendTo(document.body);this.panel.html(list);this.panel.on("click",$.proxy(this.click,this));$(document).on("mousedown",$.proxy(this.hide,this));this.panel.on("mousedown", $.proxy(this.mousedown,this))};SimpleColorPicker.prototype={constructor:SimpleColorPicker,show:function(){var panelpadding=7;var pos=this.icon.offset();switch(this.select.attr("data-position")){case "top":this.panel.css({left:pos.left-panelpadding,top:pos.top-this.panel.outerHeight()-1});break;case "bottom":this.panel.css({left:pos.left-panelpadding,top:pos.top+this.icon.outerHeight()});break;case "left":this.panel.css({left:pos.left-this.panel.outerWidth(),top:pos.top-(this.panel.outerHeight()-this.icon.outerHeight())/ 2-1});break;case "right":default:this.panel.css({left:pos.left+this.icon.outerWidth(),top:pos.top-(this.panel.outerHeight()-this.icon.outerHeight())/2-1});break}this.panel.show(this.options.delay)},hide:function(){if(this.panel.css("display")!="none")this.panel.hide(this.options.delay)},click:function(e){var target=$(e.target);if(target.length===1)if(target[0].nodeName.toLowerCase()==="span"){var color="";var bgcolor="";var clss="";if(target.parent().hasClass("nocolor")){color="none";bgcolor="transparent"; clss="nocolor"}else{color=this.rgb2hex(target.css("background-color"));bgcolor=color}target.parent().siblings().removeClass("active");target.parent().addClass("active");this.icon.removeClass("nocolor").addClass(clss);this.icon.find("span").css("background-color",bgcolor);this.hide();this.select.val(color).change()}},mousedown:function(e){e.stopPropagation();e.preventDefault()},rgb2hex:function(rgb){function hex(x){return("0"+parseInt(x,10).toString(16)).slice(-2)}var matches=rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/); if(matches===null)return rgb;else return"#"+hex(matches[1])+hex(matches[2])+hex(matches[3])}};$.fn.simplecolors=function(option){return this.each(function(){var $this=$(this),data=$this.data("simplecolors"),options=typeof option==="object"&&option;if(!data)$this.data("simplecolors",data=new SimpleColorPicker(this,options));if(typeof option==="string")data[option]()})};$.fn.simplecolors.Constructor=SimpleColorPicker;$.fn.simplecolors.defaults={delay:0}})(jQuery);
Close