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.190.253.57
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-parser /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
tokenize-arg-string.js
856
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tokenize-arg-string.js
// take an un-split argv string and tokenize it. module.exports = function (argString) { if (Array.isArray(argString)) { return argString.map(e => typeof e !== 'string' ? e + '' : e) } argString = argString.trim() let i = 0 let prevC = null let c = null let opening = null const args = [] for (let ii = 0; ii < argString.length; ii++) { prevC = c c = argString.charAt(ii) // split on spaces unless we're in quotes. if (c === ' ' && !opening) { if (!(prevC === ' ')) { i++ } continue } // don't split the string if we're in matching // opening or closing single and double quotes. if (c === opening) { opening = null } else if ((c === "'" || c === '"') && !opening) { opening = c } if (!args[i]) args[i] = '' args[i] += c } return args }
Close