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 /
@npmcli /
run-script /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
is-server-package.js
314
B
-rw-r--r--
is-windows.js
113
B
-rw-r--r--
make-spawn-args.js
1.01
KB
-rw-r--r--
package-envs.js
683
B
-rw-r--r--
run-script-pkg.js
2.47
KB
-rw-r--r--
run-script.js
484
B
-rw-r--r--
set-path.js
1.52
KB
-rw-r--r--
signal-manager.js
812
B
-rw-r--r--
validate-options.js
1.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : make-spawn-args.js
/* eslint camelcase: "off" */ const isWindows = require('./is-windows.js') const setPATH = require('./set-path.js') const {resolve} = require('path') const npm_config_node_gyp = require.resolve('node-gyp/bin/node-gyp.js') const makeSpawnArgs = options => { const { event, path, scriptShell = isWindows ? process.env.ComSpec || 'cmd' : 'sh', env = {}, stdio, cmd, stdioString = false, } = options const isCmd = /(?:^|\\)cmd(?:\.exe)?$/i.test(scriptShell) const args = isCmd ? ['/d', '/s', '/c', cmd] : ['-c', cmd] const spawnOpts = { env: setPATH(path, { // we need to at least save the PATH environment var ...process.env, ...env, npm_package_json: resolve(path, 'package.json'), npm_lifecycle_event: event, npm_lifecycle_script: cmd, npm_config_node_gyp, }), stdioString, stdio, cwd: path, ...(isCmd ? { windowsVerbatimArguments: true } : {}), } return [scriptShell, args, spawnOpts] } module.exports = makeSpawnArgs
Close