Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
npm-run-path /
Delete
Unzip
Name
Size
Permission
Date
Action
dhnodejsBundle.cjs
1.6
KB
-rw-r--r--
2023-04-28 03:08
index.d.ts
2.21
KB
-rw-r--r--
2023-04-28 03:08
index.js
938
B
-rw-r--r--
2023-04-28 03:08
package.json
1.11
KB
-rw-r--r--
2023-04-28 03:08
pkgjs-lock.json
310
B
-rw-r--r--
2023-04-28 03:08
Save
Rename
import process from 'node:process'; import path from 'node:path'; import url from 'node:url'; import pathKey from 'path-key'; export function npmRunPath(options = {}) { const { cwd = process.cwd(), path: path_ = process.env[pathKey()], execPath = process.execPath, } = options; let previous; const cwdString = cwd instanceof URL ? url.fileURLToPath(cwd) : cwd; let cwdPath = path.resolve(cwdString); const result = []; while (previous !== cwdPath) { result.push(path.join(cwdPath, 'node_modules/.bin')); previous = cwdPath; cwdPath = path.resolve(cwdPath, '..'); } // Ensure the running `node` binary is used. result.push(path.resolve(cwdString, execPath, '..')); return [...result, path_].join(path.delimiter); } export function npmRunPathEnv({env = process.env, ...options} = {}) { env = {...env}; const path = pathKey({env}); options.path = env[path]; env[path] = npmRunPath(options); return env; }