Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.128
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
yargs /
[ HOME SHELL ]
Name
Size
Permission
Action
build
[ DIR ]
dr-xr-xr-x
helpers
[ DIR ]
dr-xr-xr-x
lib
[ DIR ]
dr-xr-xr-x
locales
[ DIR ]
dr-xr-xr-x
CHANGELOG.md
15.77
KB
-rw-r--r--
LICENSE
1.12
KB
-rw-r--r--
README.md
5.83
KB
-rw-r--r--
browser.mjs
232
B
-rw-r--r--
index.cjs
1.18
KB
-rw-r--r--
index.mjs
231
B
-rw-r--r--
package.json
2.87
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); // TODO(bcoe): warn if argv.parse() or argv.argv is used directly. 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), ...Object.getOwnPropertyNames(inst.constructor.prototype), ].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