Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.137.210.16
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
@npmcli /
run-script /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
escape.js
1.5
KB
-rw-r--r--
is-server-package.js
314
B
-rw-r--r--
is-windows.js
113
B
-rw-r--r--
make-spawn-args.js
1.97
KB
-rw-r--r--
package-envs.js
699
B
-rw-r--r--
run-script-pkg.js
2.69
KB
-rw-r--r--
run-script.js
516
B
-rw-r--r--
set-path.js
1.47
KB
-rw-r--r--
signal-manager.js
820
B
-rw-r--r--
validate-options.js
1.18
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 which = require('which') const npm_config_node_gyp = require.resolve('node-gyp/bin/node-gyp.js') const escape = require('./escape.js') const makeSpawnArgs = options => { const { event, path, scriptShell = isWindows ? process.env.ComSpec || 'cmd' : 'sh', binPaths, env = {}, stdio, cmd, args = [], stdioString = false, } = options const spawnEnv = setPATH(path, binPaths, { // 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, }) let doubleEscape = false const isCmd = /(?:^|\\)cmd(?:\.exe)?$/i.test(scriptShell) if (isCmd) { let initialCmd = '' let insideQuotes = false for (let i = 0; i < cmd.length; ++i) { const char = cmd.charAt(i) if (char === ' ' && !insideQuotes) { break } initialCmd += char if (char === '"' || char === "'") { insideQuotes = !insideQuotes } } let pathToInitial try { pathToInitial = which.sync(initialCmd, { path: spawnEnv.path, pathext: spawnEnv.pathext, }).toLowerCase() } catch (err) { pathToInitial = initialCmd.toLowerCase() } doubleEscape = pathToInitial.endsWith('.cmd') || pathToInitial.endsWith('.bat') } let script = cmd for (const arg of args) { script += isCmd ? ` ${escape.cmd(arg, doubleEscape)}` : ` ${escape.sh(arg)}` } const spawnArgs = isCmd ? ['/d', '/s', '/c', script] : ['-c', '--', script] const spawnOpts = { env: spawnEnv, stdioString, stdio, cwd: path, ...(isCmd ? { windowsVerbatimArguments: true } : {}), } return [scriptShell, spawnArgs, spawnOpts] } module.exports = makeSpawnArgs
Close