Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
usr /
share /
nodejs /
npm /
lib /
utils /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
definition.js
6.36
KB
-rw-r--r--
definitions.js
60.24
KB
-rw-r--r--
describe-all.js
812
B
-rw-r--r--
flatten.js
1.18
KB
-rw-r--r--
index.js
1.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
const flatten = require('./flatten.js') const definitions = require('./definitions.js') const describeAll = require('./describe-all.js') // aliases where they get expanded into a completely different thing // these are NOT supported in the environment or npmrc files, only // expanded on the CLI. // TODO: when we switch off of nopt, use an arg parser that supports // more reasonable aliasing and short opts right in the definitions set. const shorthands = { 'enjoy-by': ['--before'], d: ['--loglevel', 'info'], dd: ['--loglevel', 'verbose'], ddd: ['--loglevel', 'silly'], quiet: ['--loglevel', 'warn'], q: ['--loglevel', 'warn'], s: ['--loglevel', 'silent'], silent: ['--loglevel', 'silent'], verbose: ['--loglevel', 'verbose'], desc: ['--description'], help: ['--usage'], local: ['--no-global'], n: ['--no-yes'], no: ['--no-yes'], porcelain: ['--parseable'], readonly: ['--read-only'], reg: ['--registry'], } for (const [key, { short }] of Object.entries(definitions)) { if (!short) { continue } // can be either an array or string for (const s of [].concat(short)) { shorthands[s] = [`--${key}`] } } module.exports = { get defaults () { // NB: 'default' is a reserved word return Object.entries(definitions).map(([key, { default: def }]) => { return [key, def] }).reduce((defaults, [key, def]) => { defaults[key] = def return defaults }, {}) }, definitions, flatten, shorthands, describeAll, }
Close