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
/
var /
www /
html /
events /
node_modules /
pm2 /
lib /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
Config.js
6.09
KB
-rw-rw-r--
IsAbsolute.js
606
B
-rw-rw-r--
copydirSync.js
2.8
KB
-rw-rw-r--
deleteFolderRecursive.js
480
B
-rw-rw-r--
find-package-json.js
1.73
KB
-rw-rw-r--
fmt.js
2.04
KB
-rw-rw-r--
isbinaryfile.js
2.64
KB
-rw-rw-r--
json5.js
22.94
KB
-rw-rw-r--
open.js
1.57
KB
-rw-rw-r--
passwd.js
1.13
KB
-rw-rw-r--
promise.min.js
2.59
KB
-rw-rw-r--
sexec.js
1.17
KB
-rw-rw-r--
treeify.js
3.46
KB
-rw-rw-r--
which.js
3.49
KB
-rw-rw-r--
xdg-open
20.93
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sexec.js
var path = require('path'); var fs = require('fs'); var child = require('child_process'); var DEFAULT_MAXBUFFER_SIZE = 20 * 1024 * 1024; function _exec(command, options, callback) { options = options || {}; if (typeof options === 'function') { callback = options; } if (typeof options === 'object' && typeof callback === 'function') { options.async = true; } if (!command) { try { console.error('[sexec] must specify command'); } catch (e) { return; } } options = Object.assign({ silent: false, cwd: path.resolve(process.cwd()).toString(), env: process.env, maxBuffer: DEFAULT_MAXBUFFER_SIZE, encoding: 'utf8', }, options); var c = child.exec(command, options, function (err, stdout, stderr) { if (callback) { if (!err) { callback(0, stdout, stderr); } else if (err.code === undefined) { // See issue #536 /* istanbul ignore next */ callback(1, stdout, stderr); } else { callback(err.code, stdout, stderr); } } }); if (!options.silent) { c.stdout.pipe(process.stdout); c.stderr.pipe(process.stderr); } } module.exports = _exec;
Close