Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.191.171.121
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kusdde /
adm2018 /
js /
pages /
[ HOME SHELL ]
Name
Size
Permission
Action
cards
[ DIR ]
drwxr-xr-x
charts
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
forms
[ DIR ]
drwxr-xr-x
maps
[ DIR ]
drwxr-xr-x
medias
[ DIR ]
drwxr-xr-x
tables
[ DIR ]
drwxr-xr-x
ui
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
index.js
2.71
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
$(function () { //Widgets count $('.count-to').countTo(); //Sales count to $('.sales-count-to').countTo({ formatter: function (value, options) { return '$' + value.toFixed(2).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, ' ').replace('.', ','); } }); initRealTimeChart(); initDonutChart(); initSparkline(); }); var realtime = 'on'; function initRealTimeChart() { //Real time ========================================================================================== var plot = $.plot('#real_time_chart', [getRandomData()], { series: { shadowSize: 0, color: 'rgb(0, 188, 212)' }, grid: { borderColor: '#f3f3f3', borderWidth: 1, tickColor: '#f3f3f3' }, lines: { fill: true }, yaxis: { min: 0, max: 100 }, xaxis: { min: 0, max: 100 } }); function updateRealTime() { plot.setData([getRandomData()]); plot.draw(); var timeout; if (realtime === 'on') { timeout = setTimeout(updateRealTime, 320); } else { clearTimeout(timeout); } } updateRealTime(); $('#realtime').on('change', function () { realtime = this.checked ? 'on' : 'off'; updateRealTime(); }); //==================================================================================================== } function initSparkline() { $(".sparkline").each(function () { var $this = $(this); $this.sparkline('html', $this.data()); }); } function initDonutChart() { Morris.Donut({ element: 'donut_chart', data: [{ label: 'Chrome', value: 37 }, { label: 'Firefox', value: 30 }, { label: 'Safari', value: 18 }, { label: 'Opera', value: 12 }, { label: 'Other', value: 3 }], colors: ['rgb(233, 30, 99)', 'rgb(0, 188, 212)', 'rgb(255, 152, 0)', 'rgb(0, 150, 136)', 'rgb(96, 125, 139)'], formatter: function (y) { return y + '%' } }); } var data = [], totalPoints = 110; function getRandomData() { if (data.length > 0) data = data.slice(1); while (data.length < totalPoints) { var prev = data.length > 0 ? data[data.length - 1] : 50, y = prev + Math.random() * 10 - 5; if (y < 0) { y = 0; } else if (y > 100) { y = 100; } data.push(y); } var res = []; for (var i = 0; i < data.length; ++i) { res.push([i, data[i]]); } return res; }
Close