Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
commert /
accout /
js /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
autocomplete.js
8.04
KB
-rwxr-xr-x
calendar.js
16.46
KB
-rwxr-xr-x
clock.js
2.76
KB
-rwxr-xr-x
common.js
22.6
KB
-rwxr-xr-x
datalist.js
8.23
KB
-rwxr-xr-x
ddmenu.js
7.72
KB
-rwxr-xr-x
ddpanel.js
2.1
KB
-rwxr-xr-x
dragdrop.js
2.62
KB
-rwxr-xr-x
editinplace.js
2.8
KB
-rwxr-xr-x
facebook.js
2.14
KB
-rwxr-xr-x
gajax.js
139.73
KB
-rwxr-xr-x
gbanner.js
7.88
KB
-rwxr-xr-x
google.js
1.9
KB
-rwxr-xr-x
graphs.js
36.78
KB
-rwxr-xr-x
inputgroup.js
3.37
KB
-rwxr-xr-x
loader.js
5.9
KB
-rwxr-xr-x
multiselect.js
2.61
KB
-rwxr-xr-x
pdpa.js
1.73
KB
-rwxr-xr-x
range.js
9.47
KB
-rwxr-xr-x
select.js
8.28
KB
-rwxr-xr-x
spline.js
5.58
KB
-rwxr-xr-x
table.js
19.77
KB
-rwxr-xr-x
uploads.js
11.4
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : loader.js
/** * GLoader * Javascript page load (Ajax) * * @filesource js/table.js * @link https://www.kotchasan.com/ * @copyright 2016 Goragod.com * @license https://www.kotchasan.com/license/ */ (function() { "use strict"; window.GLoader = GClass.create(); GLoader.prototype = { initialize: function(reader, callback, geturl, onbeforeload) { this.myhistory = new Array(); this.geturl = geturl || this.parseURL; this.req = new GAjax(); this.reader = reader; this.callback = callback; this.onbeforeload = onbeforeload; var self = this, my_location = location.toString(), a = my_location.indexOf("?"), b = my_location.indexOf("#"), locs = my_location.split(/[\?\#]/); if (a > -1 && b > -1) { this.lasturl = a < b ? locs[1] : locs[2]; } else if (a > -1) { this.lasturl = locs[1]; } else { this.lasturl = ""; } window.addEvent('hashchange', function() { self._hashChanged(); }); }, _hashChanged: function() { var locs = window.location.toString().split("#"); if (locs[1]) { if (locs[1] != this.lasturl && locs[1].indexOf("=") > -1) { this.lasturl = locs[1]; this.myhistory.push(locs[1]); if (this.myhistory.length > 2) { this.myhistory.shift(); } var ret = locs[1]; if (Object.isFunction(this.onbeforeload)) { ret = this.onbeforeload.call(ret); if (ret === true || Object.isNull(ret)) { ret = locs[1]; } } if (ret !== false) { this.req.send(this.reader, ret, this.callback); } } } else { locs = locs[0].split("?"); locs = locs[1] ? locs[1] : "module=" + FIRST_MODULE; if (locs != this.lasturl && this.myhistory.length > 0) { this.lasturl = locs; this.myhistory.push(locs); if (this.myhistory.length > 2) { this.myhistory.shift(); } this.req.send(this.reader, locs, this.callback); } } }, initLoading: function(loading, center) { this.req.initLoading(loading, center); return this; }, init: function(obj) { var temp = this, patt1 = new RegExp("^.*" + location.hostname + "/(.*?)$"), patt2 = new RegExp(".*#.*?"); forEach($E(obj).getElementsByTagName("a"), function() { if ( this.target == "" && this.onclick == null && this.href != "" && patt1.exec(this.href) && !patt2.exec(this.href) ) { this.onclick = function(e) { var evt = e || window.event; if (!(evt.shiftKey || evt.ctrlKey || evt.metaKey || evt.altKey)) { return temp.location(this.href); } }; } }); this._hashChanged(); return this; }, location: function(url) { var ret = this.geturl.call(this, url); if (ret) { var locs = window.location.toString().split("#"); window.location = locs[0] + "#" + decodeURIComponent(ret.join("&")); return false; } else { window.location = url; } return true; }, back: function() { if (this.myhistory.length >= 2) { var history = this.myhistory[this.myhistory.length - 2], urls = window.location.toString().split("#"); window.location = urls[0] + "#" + history; } else { window.history.go(-1); } }, setParams: function(query_string) { var locs = window.location.toString().split("#"); window.location = locs[0] + "#" + query_string; }, reload: function() { var locs = window.location.toString().split("#"), ret = new Array(); if (locs.length > 1) { forEach(locs[1].split("&"), function() { if (!/time=[0-9]+/.test(this)) { ret.push(this); } }); } if (ret.length == 0) { window.location.reload(); } else { ret.push("time=" + new Date().getTime()); window.location = locs[0] + "#" + decodeURIComponent(ret.join("&")); } }, parseURL: function(url) { var loader_patt0 = /.*?module=.*?/, loader_patt1 = new RegExp( "^" + WEB_URL + "([a-z0-9]+)/([0-9]+)/([0-9]+)/(.*).html$" ), loader_patt2 = new RegExp( "^" + WEB_URL + "([a-z0-9]+)/([0-9]+)/(.*).html$" ), loader_patt3 = new RegExp("^" + WEB_URL + "([a-z0-9]+)/([0-9]+).html$"), loader_patt4 = new RegExp("^" + WEB_URL + "([a-z0-9]+)/(.*).html$"), loader_patt5 = new RegExp("^" + WEB_URL + "(.*).html$"), p1 = /module=(.*)?/, urls = url.replace(/&/g, "&").split("?"), new_q = new Array(), hs; if (urls[1] && loader_patt0.exec(urls[1])) { new_q.push(urls[1]); return new_q; } else if ((hs = loader_patt1.exec(urls[0]))) { new_q.push("module=" + hs[1] + "&cat=" + hs[2] + "&id=" + hs[3]); } else if ((hs = loader_patt2.exec(urls[0]))) { new_q.push("module=" + hs[1] + "&cat=" + hs[2] + "&alias=" + hs[3]); } else if ((hs = loader_patt3.exec(urls[0]))) { new_q.push("module=" + hs[1] + "&cat=" + hs[2]); } else if ((hs = loader_patt4.exec(urls[0]))) { new_q.push("module=" + hs[1] + "&alias=" + hs[2]); } else if ((hs = loader_patt5.exec(urls[0]))) { new_q.push("module=" + hs[1]); } else { return null; } if (urls[1]) { forEach(urls[1].split("&"), function(q) { if (q != "action=logout" && q != "action=login" && !p1.test(q)) { new_q.push(q); } }); } return new_q; } }; })();
Close