Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.191.11.237
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
Admin /
plugins /
flot-old /
[ HOME SHELL ]
Name
Size
Permission
Action
excanvas.js
40.96
KB
-rw-r--r--
excanvas.min.js
18.86
KB
-rw-r--r--
jquery.colorhelpers.js
6.01
KB
-rw-r--r--
jquery.colorhelpers.min.js
3.06
KB
-rw-r--r--
jquery.flot.canvas.js
9.37
KB
-rw-r--r--
jquery.flot.canvas.min.js
3.72
KB
-rw-r--r--
jquery.flot.categories.js
5.89
KB
-rw-r--r--
jquery.flot.categories.min.js
2.4
KB
-rw-r--r--
jquery.flot.crosshair.js
5.3
KB
-rw-r--r--
jquery.flot.crosshair.min.js
1.98
KB
-rw-r--r--
jquery.flot.errorbars.js
12.32
KB
-rw-r--r--
jquery.flot.errorbars.min.js
5.19
KB
-rw-r--r--
jquery.flot.fillbetween.js
5.13
KB
-rw-r--r--
jquery.flot.fillbetween.min.js
2.12
KB
-rw-r--r--
jquery.flot.image.js
7.19
KB
-rw-r--r--
jquery.flot.image.min.js
2.48
KB
-rw-r--r--
jquery.flot.js
118.78
KB
-rw-r--r--
jquery.flot.min.js
51.07
KB
-rw-r--r--
jquery.flot.navigate.js
13.86
KB
-rw-r--r--
jquery.flot.navigate.min.js
6.26
KB
-rw-r--r--
jquery.flot.pie.js
23.08
KB
-rw-r--r--
jquery.flot.pie.min.js
11.74
KB
-rw-r--r--
jquery.flot.resize.js
3.06
KB
-rw-r--r--
jquery.flot.resize.min.js
1.98
KB
-rw-r--r--
jquery.flot.selection.js
12.83
KB
-rw-r--r--
jquery.flot.selection.min.js
5.01
KB
-rw-r--r--
jquery.flot.stack.js
6.92
KB
-rw-r--r--
jquery.flot.stack.min.js
2.27
KB
-rw-r--r--
jquery.flot.symbol.js
2.45
KB
-rw-r--r--
jquery.flot.symbol.min.js
1.02
KB
-rw-r--r--
jquery.flot.threshold.js
4.38
KB
-rw-r--r--
jquery.flot.threshold.min.js
1.66
KB
-rw-r--r--
jquery.flot.time.js
11.47
KB
-rw-r--r--
jquery.flot.time.min.js
6.56
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.flot.canvas.min.js
(function($){var options={canvas:true};var render,getTextInfo,addText;var hasOwnProperty=Object.prototype.hasOwnProperty;function init(plot,classes){var Canvas=classes.Canvas;if(render==null){getTextInfo=Canvas.prototype.getTextInfo,addText=Canvas.prototype.addText,render=Canvas.prototype.render}Canvas.prototype.render=function(){if(!plot.getOptions().canvas){return render.call(this)}var context=this.context,cache=this._textCache;context.save();context.textBaseline="middle";for(var layerKey in cache){if(hasOwnProperty.call(cache,layerKey)){var layerCache=cache[layerKey];for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey],updateStyles=true;for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var info=styleCache[key],positions=info.positions,lines=info.lines;if(updateStyles){context.fillStyle=info.font.color;context.font=info.font.definition;updateStyles=false}for(var i=0,position;position=positions[i];i++){if(position.active){for(var j=0,line;line=position.lines[j];j++){context.fillText(lines[j].text,line[0],line[1])}}else{positions.splice(i--,1)}}if(positions.length==0){delete styleCache[key]}}}}}}}context.restore()};Canvas.prototype.getTextInfo=function(layer,text,font,angle,width){if(!plot.getOptions().canvas){return getTextInfo.call(this,layer,text,font,angle,width)}var textStyle,layerCache,styleCache,info;text=""+text;if(typeof font==="object"){textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family}else{textStyle=font}layerCache=this._textCache[layer];if(layerCache==null){layerCache=this._textCache[layer]={}}styleCache=layerCache[textStyle];if(styleCache==null){styleCache=layerCache[textStyle]={}}info=styleCache[text];if(info==null){var context=this.context;if(typeof font!=="object"){var element=$("<div> </div>").css("position","absolute").addClass(typeof font==="string"?font:null).appendTo(this.getTextLayer(layer));font={lineHeight:element.height(),style:element.css("font-style"),variant:element.css("font-variant"),weight:element.css("font-weight"),family:element.css("font-family"),color:element.css("color")};font.size=element.css("line-height",1).height();element.remove()}textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family;info=styleCache[text]={width:0,height:0,positions:[],lines:[],font:{definition:textStyle,color:font.color}};context.save();context.font=textStyle;var lines=(text+"").replace(/<br ?\/?>|\r\n|\r/g,"\n").split("\n");for(var i=0;i<lines.length;++i){var lineText=lines[i],measured=context.measureText(lineText);info.width=Math.max(measured.width,info.width);info.height+=font.lineHeight;info.lines.push({text:lineText,width:measured.width,height:font.lineHeight})}context.restore()}return info};Canvas.prototype.addText=function(layer,x,y,text,font,angle,width,halign,valign){if(!plot.getOptions().canvas){return addText.call(this,layer,x,y,text,font,angle,width,halign,valign)}var info=this.getTextInfo(layer,text,font,angle,width),positions=info.positions,lines=info.lines;y+=info.height/lines.length/2;if(valign=="middle"){y=Math.round(y-info.height/2)}else if(valign=="bottom"){y=Math.round(y-info.height)}else{y=Math.round(y)}if(!!(window.opera&&window.opera.version().split(".")[0]<12)){y-=2}for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=true;return}}position={active:true,lines:[],x:x,y:y};positions.push(position);for(var i=0,line;line=lines[i];i++){if(halign=="center"){position.lines.push([Math.round(x-line.width/2),y])}else if(halign=="right"){position.lines.push([Math.round(x-line.width),y])}else{position.lines.push([Math.round(x),y])}y+=line.height}}}$.plot.plugins.push({init:init,options:options,name:"canvas",version:"1.0"})})(jQuery);
Close