Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cai /
admins /
vendor /
flot /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxr-x--x
API.md
53.78
KB
-rwxr-x--x
CONTRIBUTING.md
3.26
KB
-rwxr-x--x
FAQ.md
3.23
KB
-rwxr-x--x
LICENSE.txt
1.07
KB
-rwxr-x--x
Makefile
297
B
-rwxr-x--x
NEWS.md
40.35
KB
-rwxr-x--x
PLUGINS.md
4.38
KB
-rwxr-x--x
README.md
3.8
KB
-rwxr-x--x
excanvas.js
42.35
KB
-rwxr-x--x
excanvas.min.js
18.86
KB
-rwxr-x--x
jquery.colorhelpers.js
6.18
KB
-rwxr-x--x
jquery.colorhelpers.min.js
3.06
KB
-rwxr-x--x
jquery.flot.canvas.js
9.71
KB
-rwxr-x--x
jquery.flot.canvas.min.js
3.87
KB
-rwxr-x--x
jquery.flot.categories.js
6.08
KB
-rwxr-x--x
jquery.flot.categories.min.js
2.54
KB
-rwxr-x--x
jquery.flot.crosshair.js
5.46
KB
-rwxr-x--x
jquery.flot.crosshair.min.js
2.12
KB
-rwxr-x--x
jquery.flot.errorbars.js
12.66
KB
-rwxr-x--x
jquery.flot.errorbars.min.js
5.33
KB
-rwxr-x--x
jquery.flot.fillbetween.js
5.35
KB
-rwxr-x--x
jquery.flot.fillbetween.min.js
2.26
KB
-rwxr-x--x
jquery.flot.image.js
7.42
KB
-rwxr-x--x
jquery.flot.image.min.js
2.63
KB
-rwxr-x--x
jquery.flot.js
123.18
KB
-rwxr-x--x
jquery.flot.min.js
51.73
KB
-rwxr-x--x
jquery.flot.navigate.js
14.22
KB
-rwxr-x--x
jquery.flot.navigate.min.js
6.42
KB
-rwxr-x--x
jquery.flot.pie.js
24.05
KB
-rwxr-x--x
jquery.flot.pie.min.js
11.9
KB
-rwxr-x--x
jquery.flot.resize.js
3.29
KB
-rwxr-x--x
jquery.flot.resize.min.js
2.29
KB
-rwxr-x--x
jquery.flot.selection.js
13.18
KB
-rwxr-x--x
jquery.flot.selection.min.js
5.15
KB
-rwxr-x--x
jquery.flot.stack.js
7.11
KB
-rwxr-x--x
jquery.flot.stack.min.js
2.41
KB
-rwxr-x--x
jquery.flot.symbol.js
2.52
KB
-rwxr-x--x
jquery.flot.symbol.min.js
1.17
KB
-rwxr-x--x
jquery.flot.threshold.js
4.51
KB
-rwxr-x--x
jquery.flot.threshold.min.js
1.8
KB
-rwxr-x--x
jquery.flot.time.js
11.91
KB
-rwxr-x--x
jquery.flot.time.min.js
6.74
KB
-rwxr-x--x
jquery.js
269.07
KB
-rwxr-x--x
jquery.min.js
138.97
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.flot.crosshair.min.js
/* Javascript plotting library for jQuery, version 0.8.3. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. */ (function($){var options={crosshair:{mode:null,color:"rgba(170, 0, 0, 0.80)",lineWidth:1}};function init(plot){var crosshair={x:-1,y:-1,locked:false};plot.setCrosshair=function setCrosshair(pos){if(!pos)crosshair.x=-1;else{var o=plot.p2c(pos);crosshair.x=Math.max(0,Math.min(o.left,plot.width()));crosshair.y=Math.max(0,Math.min(o.top,plot.height()))}plot.triggerRedrawOverlay()};plot.clearCrosshair=plot.setCrosshair;plot.lockCrosshair=function lockCrosshair(pos){if(pos)plot.setCrosshair(pos);crosshair.locked=true};plot.unlockCrosshair=function unlockCrosshair(){crosshair.locked=false};function onMouseOut(e){if(crosshair.locked)return;if(crosshair.x!=-1){crosshair.x=-1;plot.triggerRedrawOverlay()}}function onMouseMove(e){if(crosshair.locked)return;if(plot.getSelection&&plot.getSelection()){crosshair.x=-1;return}var offset=plot.offset();crosshair.x=Math.max(0,Math.min(e.pageX-offset.left,plot.width()));crosshair.y=Math.max(0,Math.min(e.pageY-offset.top,plot.height()));plot.triggerRedrawOverlay()}plot.hooks.bindEvents.push(function(plot,eventHolder){if(!plot.getOptions().crosshair.mode)return;eventHolder.mouseout(onMouseOut);eventHolder.mousemove(onMouseMove)});plot.hooks.drawOverlay.push(function(plot,ctx){var c=plot.getOptions().crosshair;if(!c.mode)return;var plotOffset=plot.getPlotOffset();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);if(crosshair.x!=-1){var adj=plot.getOptions().crosshair.lineWidth%2?.5:0;ctx.strokeStyle=c.color;ctx.lineWidth=c.lineWidth;ctx.lineJoin="round";ctx.beginPath();if(c.mode.indexOf("x")!=-1){var drawX=Math.floor(crosshair.x)+adj;ctx.moveTo(drawX,0);ctx.lineTo(drawX,plot.height())}if(c.mode.indexOf("y")!=-1){var drawY=Math.floor(crosshair.y)+adj;ctx.moveTo(0,drawY);ctx.lineTo(plot.width(),drawY)}ctx.stroke()}ctx.restore()});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mouseout",onMouseOut);eventHolder.unbind("mousemove",onMouseMove)})}$.plot.plugins.push({init:init,options:options,name:"crosshair",version:"1.0"})})(jQuery);
Close