Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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
/
usr /
share /
nodejs /
yargs /
[ HOME SHELL ]
Name
Size
Permission
Action
build
[ DIR ]
drwxr-xr-x
helpers
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
locales
[ DIR ]
drwxr-xr-x
browser.mjs
234
B
-rw-r--r--
index.cjs
1.04
KB
-rw-r--r--
index.mjs
233
B
-rw-r--r--
package.json
3.03
KB
-rw-r--r--
pkgjs-lock.json
1.17
KB
-rw-r--r--
yargs
457
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.cjs
'use strict'; // classic singleton yargs API, to use yargs // without running as a singleton do: // require('yargs/yargs')(process.argv.slice(2)) const {Yargs, processArgv} = require('./build/index.cjs'); Argv(processArgv.hideBin(process.argv)); module.exports = Argv; function Argv(processArgs, cwd) { const argv = Yargs(processArgs, cwd, require); singletonify(argv); return argv; } /* Hack an instance of Argv with process.argv into Argv so people can do require('yargs')(['--beeble=1','-z','zizzle']).argv to parse a list of args and require('yargs').argv to get a parsed version of process.argv. */ function singletonify(inst) { Object.keys(inst).forEach(key => { if (key === 'argv') { Argv.__defineGetter__(key, inst.__lookupGetter__(key)); } else if (typeof inst[key] === 'function') { Argv[key] = inst[key].bind(inst); } else { Argv.__defineGetter__('$0', () => { return inst.$0; }); Argv.__defineGetter__('parsed', () => { return inst.parsed; }); } }); }
Close