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 : dragdrop.js
/** * GDragDrop * Javascript drag drop * * @filesource js/dragdrop.js * @link https://www.kotchasan.com/ * @copyright 2019 Goragod.com * @license https://www.kotchasan.com/license/ */ (function() { "use strict"; window.GDragDrop = GClass.create(); GDragDrop.prototype = { initialize: function(id, options) { this.options = { dragClass: "icon-drag", itemClass: "sort", endDrag: $K.emptyFunction }; for (var property in options) { this.options[property] = options[property]; } this.changed = false; var self = this, dropitems = new Array(), hoverItem = null, position = 0; function checkMouseOver(item, mousePos) { var elemPos = item.viewportOffset(); var elemSize = item.getDimensions(); var mouseover = mousePos.x > elemPos.left && mousePos.y > elemPos.top; return ( mouseover && mousePos.x < elemPos.left + elemSize.width && mousePos.y < elemPos.top + elemSize.height ); } function doBeginDrag() { self.changed = false; self.dragItem = this; hoverItem = this; position = this.mousePos.y; } function doMoveDrag() { var temp = this; forEach(dropitems, function() { if (checkMouseOver(this, temp.mousePos)) { if (this != hoverItem) { self.changed = true; if (temp.mousePos.y > position) { temp.move.parentNode.insertBefore(temp.move, this.nextSibling); } else { temp.move.parentNode.insertBefore(temp.move, this); } hoverItem = this; return true; } } }); position = this.mousePos.y; } function doEndDrag() { if (self.changed) { self.options.endDrag.call(this); } } function _find(elem) { if (elem.hasClass(self.options.dragClass)) { return elem; } else { var els = $E(elem).getElementsByTagName("*"); for (var i = 0; i < els.length; i++) { if ($G(els[i]).hasClass(self.options.dragClass)) { return els[i]; } } } } var o = { beginDrag: doBeginDrag, moveDrag: doMoveDrag, endDrag: doEndDrag }; forEach($E(id).getElementsByTagName("*"), function() { if ($G(this).hasClass(self.options.itemClass)) { var drag = new GDrag(_find(this), o); drag.move = this; dropitems.push(this); } }); } }; })();
Close