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 /
morris /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-x--x
_template.html
726
B
-rwxr-x--x
area-as-line.html
1.03
KB
-rwxr-x--x
area.html
1.11
KB
-rwxr-x--x
bar-colors.html
1.27
KB
-rwxr-x--x
bar-no-axes.html
1.01
KB
-rwxr-x--x
bar.html
1.05
KB
-rwxr-x--x
days.html
1.55
KB
-rwxr-x--x
decimal-custom-hover.html
1.2
KB
-rwxr-x--x
diagonal-xlabels-bar.html
1.59
KB
-rwxr-x--x
diagonal-xlabels.html
1.58
KB
-rwxr-x--x
donut-colors.html
1.13
KB
-rwxr-x--x
donut-formatter.html
1.07
KB
-rwxr-x--x
donut.html
1
KB
-rwxr-x--x
dst.html
1.04
KB
-rwxr-x--x
events.html
2.51
KB
-rwxr-x--x
goals.html
1.01
KB
-rwxr-x--x
months-no-smooth.html
1.55
KB
-rwxr-x--x
negative.html
1.19
KB
-rwxr-x--x
no-grid.html
1.57
KB
-rwxr-x--x
non-continuous.html
1.78
KB
-rwxr-x--x
non-date.html
1.22
KB
-rwxr-x--x
quarters.html
2.52
KB
-rwxr-x--x
resize.html
1.65
KB
-rwxr-x--x
stacked_bars.html
1.02
KB
-rwxr-x--x
timestamps.html
1.62
KB
-rwxr-x--x
updating.html
1.38
KB
-rwxr-x--x
weeks.html
2.47
KB
-rwxr-x--x
years.html
1.49
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : updating.html
<!doctype html> <head> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.2/raphael-min.js"></script> <script src="../morris.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.js"></script> <script src="lib/example.js"></script> <link rel="stylesheet" href="lib/example.css"> <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.css"> <link rel="stylesheet" href="../morris.css"> </head> <body> <h1>Updating data</h1> <div id="graph"></div> <div id="reloadStatus"> <pre id="code" class="prettyprint linenums"> var nReloads = 0; function data(offset) { var ret = []; for (var x = 0; x <= 360; x += 10) { var v = (offset + x) % 360; ret.push({ x: x, y: Math.sin(Math.PI * v / 180).toFixed(4), z: Math.cos(Math.PI * v / 180).toFixed(4) }); } return ret; } var graph = Morris.Line({ element: 'graph', data: data(0), xkey: 'x', ykeys: ['y', 'z'], labels: ['sin()', 'cos()'], parseTime: false, ymin: -1.0, ymax: 1.0, hideHover: true }); function update() { nReloads++; graph.setData(data(5 * nReloads)); $('#reloadStatus').text(nReloads + ' reloads'); } setInterval(update, 100); </pre> </body>
Close